Domain: lemmonlines.com
Server Adress: 208.122.217.104

privdayz.com

/home/httpd/html/baselinestucco.com/
Dosya Yükle :
Current File : /home/httpd/html/baselinestucco.com/dvt_wp.sql

/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.10-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: dvt_wp
-- ------------------------------------------------------
-- Server version	10.11.10-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 `wp_commentmeta`
--

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

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) 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))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES
(1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-11-18 21:17:10','2024-11-18 21:17:10','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.',0,'post-trashed','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES
(1,'cron','a:9:{i:1732731430;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:1732742230;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732742270;a:4:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732745830;a:1:{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;}}}i:1732747630;a:1:{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;}}}i:1732749430;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1733176287;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1733260630;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),
(2,'siteurl','http://dev.baselinestucco.com','on'),
(3,'home','http://dev.baselinestucco.com','on'),
(4,'blogname','baselinestucco.com','on'),
(5,'blogdescription','Strength in every texture, pride in every detail','on'),
(6,'users_can_register','0','on'),
(7,'admin_email','theparisianhostess@gmail.com','on'),
(8,'start_of_week','1','on'),
(9,'use_balanceTags','0','on'),
(10,'use_smilies','1','on'),
(11,'require_name_email','1','on'),
(12,'comments_notify','1','on'),
(13,'posts_per_rss','10','on'),
(14,'rss_use_excerpt','0','on'),
(15,'mailserver_url','mail.example.com','on'),
(16,'mailserver_login','login@example.com','on'),
(17,'mailserver_pass','','on'),
(18,'mailserver_port','110','on'),
(19,'default_category','1','on'),
(20,'default_comment_status','open','on'),
(21,'default_ping_status','open','on'),
(22,'default_pingback_flag','1','on'),
(23,'posts_per_page','10','on'),
(24,'date_format','F j, Y','on'),
(25,'time_format','g:i a','on'),
(26,'links_updated_date_format','F j, Y g:i a','on'),
(27,'comment_moderation','0','on'),
(28,'moderation_notify','1','on'),
(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),
(30,'rewrite_rules','a:267:{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:17:\"portfolio-item/?$\";s:31:\"index.php?post_type=x-portfolio\";s:47:\"portfolio-item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=x-portfolio&feed=$matches[1]\";s:42:\"portfolio-item/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=x-portfolio&feed=$matches[1]\";s:34:\"portfolio-item/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=x-portfolio&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:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:39:\"cs_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"cs_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"cs_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"cs_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"cs_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"cs_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"cs_template/([^/]+)/embed/?$\";s:44:\"index.php?cs_template=$matches[1]&embed=true\";s:32:\"cs_template/([^/]+)/trackback/?$\";s:38:\"index.php?cs_template=$matches[1]&tb=1\";s:40:\"cs_template/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?cs_template=$matches[1]&paged=$matches[2]\";s:47:\"cs_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?cs_template=$matches[1]&cpage=$matches[2]\";s:36:\"cs_template/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?cs_template=$matches[1]&page=$matches[2]\";s:28:\"cs_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"cs_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"cs_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"cs_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"cs_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"cs_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"cs_user_templates/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"cs_user_templates/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"cs_user_templates/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_user_templates/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_user_templates/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"cs_user_templates/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"cs_user_templates/([^/]+)/embed/?$\";s:50:\"index.php?cs_user_templates=$matches[1]&embed=true\";s:38:\"cs_user_templates/([^/]+)/trackback/?$\";s:44:\"index.php?cs_user_templates=$matches[1]&tb=1\";s:46:\"cs_user_templates/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?cs_user_templates=$matches[1]&paged=$matches[2]\";s:53:\"cs_user_templates/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?cs_user_templates=$matches[1]&cpage=$matches[2]\";s:42:\"cs_user_templates/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?cs_user_templates=$matches[1]&page=$matches[2]\";s:34:\"cs_user_templates/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"cs_user_templates/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"cs_user_templates/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_user_templates/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_user_templates/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"cs_user_templates/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"cs_global_block/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"cs_global_block/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"cs_global_block/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"cs_global_block/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"cs_global_block/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"cs_global_block/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"cs_global_block/([^/]+)/embed/?$\";s:48:\"index.php?cs_global_block=$matches[1]&embed=true\";s:36:\"cs_global_block/([^/]+)/trackback/?$\";s:42:\"index.php?cs_global_block=$matches[1]&tb=1\";s:44:\"cs_global_block/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?cs_global_block=$matches[1]&paged=$matches[2]\";s:51:\"cs_global_block/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?cs_global_block=$matches[1]&cpage=$matches[2]\";s:40:\"cs_global_block/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?cs_global_block=$matches[1]&page=$matches[2]\";s:32:\"cs_global_block/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"cs_global_block/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"cs_global_block/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"cs_global_block/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"cs_global_block/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"cs_global_block/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"cs_header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"cs_header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"cs_header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"cs_header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"cs_header/([^/]+)/embed/?$\";s:42:\"index.php?cs_header=$matches[1]&embed=true\";s:30:\"cs_header/([^/]+)/trackback/?$\";s:36:\"index.php?cs_header=$matches[1]&tb=1\";s:38:\"cs_header/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?cs_header=$matches[1]&paged=$matches[2]\";s:45:\"cs_header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?cs_header=$matches[1]&cpage=$matches[2]\";s:34:\"cs_header/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?cs_header=$matches[1]&page=$matches[2]\";s:26:\"cs_header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"cs_header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"cs_header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"cs_header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"cs_footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"cs_footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"cs_footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"cs_footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"cs_footer/([^/]+)/embed/?$\";s:42:\"index.php?cs_footer=$matches[1]&embed=true\";s:30:\"cs_footer/([^/]+)/trackback/?$\";s:36:\"index.php?cs_footer=$matches[1]&tb=1\";s:38:\"cs_footer/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?cs_footer=$matches[1]&paged=$matches[2]\";s:45:\"cs_footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?cs_footer=$matches[1]&cpage=$matches[2]\";s:34:\"cs_footer/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?cs_footer=$matches[1]&page=$matches[2]\";s:26:\"cs_footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"cs_footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"cs_footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"cs_footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"cs_layout_single/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"cs_layout_single/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"cs_layout_single/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"cs_layout_single/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"cs_layout_single/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"cs_layout_single/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"cs_layout_single/([^/]+)/embed/?$\";s:49:\"index.php?cs_layout_single=$matches[1]&embed=true\";s:37:\"cs_layout_single/([^/]+)/trackback/?$\";s:43:\"index.php?cs_layout_single=$matches[1]&tb=1\";s:45:\"cs_layout_single/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?cs_layout_single=$matches[1]&paged=$matches[2]\";s:52:\"cs_layout_single/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?cs_layout_single=$matches[1]&cpage=$matches[2]\";s:41:\"cs_layout_single/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?cs_layout_single=$matches[1]&page=$matches[2]\";s:33:\"cs_layout_single/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"cs_layout_single/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"cs_layout_single/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"cs_layout_single/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"cs_layout_single/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"cs_layout_single/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"cs_layout_archive/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"cs_layout_archive/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"cs_layout_archive/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_layout_archive/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"cs_layout_archive/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"cs_layout_archive/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"cs_layout_archive/([^/]+)/embed/?$\";s:50:\"index.php?cs_layout_archive=$matches[1]&embed=true\";s:38:\"cs_layout_archive/([^/]+)/trackback/?$\";s:44:\"index.php?cs_layout_archive=$matches[1]&tb=1\";s:46:\"cs_layout_archive/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?cs_layout_archive=$matches[1]&paged=$matches[2]\";s:53:\"cs_layout_archive/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?cs_layout_archive=$matches[1]&cpage=$matches[2]\";s:42:\"cs_layout_archive/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?cs_layout_archive=$matches[1]&page=$matches[2]\";s:34:\"cs_layout_archive/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"cs_layout_archive/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"cs_layout_archive/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_layout_archive/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"cs_layout_archive/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"cs_layout_archive/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"cs_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"cs_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"cs_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"cs_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"cs_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"cs_layout/([^/]+)/embed/?$\";s:42:\"index.php?cs_layout=$matches[1]&embed=true\";s:30:\"cs_layout/([^/]+)/trackback/?$\";s:36:\"index.php?cs_layout=$matches[1]&tb=1\";s:38:\"cs_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?cs_layout=$matches[1]&paged=$matches[2]\";s:45:\"cs_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?cs_layout=$matches[1]&cpage=$matches[2]\";s:34:\"cs_layout/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?cs_layout=$matches[1]&page=$matches[2]\";s:26:\"cs_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"cs_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"cs_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"cs_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"cs_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"portfolio-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"portfolio-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"portfolio-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"portfolio-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"portfolio-item/([^/]+)/embed/?$\";s:44:\"index.php?x-portfolio=$matches[1]&embed=true\";s:35:\"portfolio-item/([^/]+)/trackback/?$\";s:38:\"index.php?x-portfolio=$matches[1]&tb=1\";s:55:\"portfolio-item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?x-portfolio=$matches[1]&feed=$matches[2]\";s:50:\"portfolio-item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?x-portfolio=$matches[1]&feed=$matches[2]\";s:43:\"portfolio-item/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?x-portfolio=$matches[1]&paged=$matches[2]\";s:50:\"portfolio-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?x-portfolio=$matches[1]&cpage=$matches[2]\";s:39:\"portfolio-item/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?x-portfolio=$matches[1]&page=$matches[2]\";s:31:\"portfolio-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"portfolio-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"portfolio-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"portfolio-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-item-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-item-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-item-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:47:\"portfolio-item-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-item-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:64:\"portfolio-item-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:59:\"portfolio-item-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:40:\"portfolio-item-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:52:\"portfolio-item-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:34:\"portfolio-item-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','on'),
(31,'hack_file','0','on'),
(32,'blog_charset','UTF-8','on'),
(33,'moderation_keys','','off'),
(34,'active_plugins','a:0:{}','on'),
(35,'category_base','','on'),
(36,'ping_sites','http://rpc.pingomatic.com/','on'),
(37,'comment_max_links','2','on'),
(38,'gmt_offset','0','on'),
(39,'default_email_category','1','on'),
(40,'recently_edited','','off'),
(41,'template','pro','on'),
(42,'stylesheet','pro','on'),
(43,'comment_registration','0','on'),
(44,'html_type','text/html','on'),
(45,'use_trackback','0','on'),
(46,'default_role','subscriber','on'),
(47,'db_version','58975','on'),
(48,'uploads_use_yearmonth_folders','1','on'),
(49,'upload_path','','on'),
(50,'blog_public','1','on'),
(51,'default_link_category','2','on'),
(52,'show_on_front','page','on'),
(53,'tag_base','','on'),
(54,'show_avatars','1','on'),
(55,'avatar_rating','G','on'),
(56,'upload_url_path','','on'),
(57,'thumbnail_size_w','150','on'),
(58,'thumbnail_size_h','150','on'),
(59,'thumbnail_crop','1','on'),
(60,'medium_size_w','300','on'),
(61,'medium_size_h','300','on'),
(62,'avatar_default','mystery','on'),
(63,'large_size_w','1024','on'),
(64,'large_size_h','1024','on'),
(65,'image_default_link_type','none','on'),
(66,'image_default_size','','on'),
(67,'image_default_align','','on'),
(68,'close_comments_for_old_posts','0','on'),
(69,'close_comments_days_old','14','on'),
(70,'thread_comments','1','on'),
(71,'thread_comments_depth','5','on'),
(72,'page_comments','0','on'),
(73,'comments_per_page','50','on'),
(74,'default_comments_page','newest','on'),
(75,'comment_order','asc','on'),
(76,'sticky_posts','a:0:{}','on'),
(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),
(80,'uninstall_plugins','a:0:{}','off'),
(81,'timezone_string','','on'),
(82,'page_for_posts','46','on'),
(83,'page_on_front','2','on'),
(84,'default_post_format','0','on'),
(85,'link_manager_enabled','0','on'),
(86,'finished_splitting_shared_terms','1','on'),
(87,'site_icon','388','on'),
(88,'medium_large_size_w','768','on'),
(89,'medium_large_size_h','0','on'),
(90,'wp_page_for_privacy_policy','3','on'),
(91,'show_comments_cookies_opt_in','1','on'),
(92,'admin_email_lifespan','1747516630','on'),
(93,'disallowed_keys','','off'),
(94,'comment_previously_approved','1','on'),
(95,'auto_plugin_theme_update_emails','a:0:{}','off'),
(96,'auto_update_core_dev','enabled','on'),
(97,'auto_update_core_minor','enabled','on'),
(98,'auto_update_core_major','enabled','on'),
(99,'wp_force_deactivated_plugins','a:0:{}','on'),
(100,'wp_attachment_pages_enabled','0','on'),
(101,'initial_db_version','58975','on'),
(102,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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;}}}','on'),
(103,'fresh_site','0','off'),
(104,'user_count','3','off'),
(105,'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;}','auto'),
(106,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:8:\"header-1\";a:0:{}s:8:\"header-2\";a:0:{}s:8:\"header-3\";a:0:{}s:8:\"header-4\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','auto'),
(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:3:\"6.7\";s:5:\"files\";a:540:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:27:\"post-content/editor-rtl.css\";i:309;s:31:\"post-content/editor-rtl.min.css\";i:310;s:23:\"post-content/editor.css\";i:311;s:27:\"post-content/editor.min.css\";i:312;s:26:\"post-content/style-rtl.css\";i:313;s:30:\"post-content/style-rtl.min.css\";i:314;s:22:\"post-content/style.css\";i:315;s:26:\"post-content/style.min.css\";i:316;s:23:\"post-date/style-rtl.css\";i:317;s:27:\"post-date/style-rtl.min.css\";i:318;s:19:\"post-date/style.css\";i:319;s:23:\"post-date/style.min.css\";i:320;s:27:\"post-excerpt/editor-rtl.css\";i:321;s:31:\"post-excerpt/editor-rtl.min.css\";i:322;s:23:\"post-excerpt/editor.css\";i:323;s:27:\"post-excerpt/editor.min.css\";i:324;s:26:\"post-excerpt/style-rtl.css\";i:325;s:30:\"post-excerpt/style-rtl.min.css\";i:326;s:22:\"post-excerpt/style.css\";i:327;s:26:\"post-excerpt/style.min.css\";i:328;s:34:\"post-featured-image/editor-rtl.css\";i:329;s:38:\"post-featured-image/editor-rtl.min.css\";i:330;s:30:\"post-featured-image/editor.css\";i:331;s:34:\"post-featured-image/editor.min.css\";i:332;s:33:\"post-featured-image/style-rtl.css\";i:333;s:37:\"post-featured-image/style-rtl.min.css\";i:334;s:29:\"post-featured-image/style.css\";i:335;s:33:\"post-featured-image/style.min.css\";i:336;s:34:\"post-navigation-link/style-rtl.css\";i:337;s:38:\"post-navigation-link/style-rtl.min.css\";i:338;s:30:\"post-navigation-link/style.css\";i:339;s:34:\"post-navigation-link/style.min.css\";i:340;s:28:\"post-template/editor-rtl.css\";i:341;s:32:\"post-template/editor-rtl.min.css\";i:342;s:24:\"post-template/editor.css\";i:343;s:28:\"post-template/editor.min.css\";i:344;s:27:\"post-template/style-rtl.css\";i:345;s:31:\"post-template/style-rtl.min.css\";i:346;s:23:\"post-template/style.css\";i:347;s:27:\"post-template/style.min.css\";i:348;s:24:\"post-terms/style-rtl.css\";i:349;s:28:\"post-terms/style-rtl.min.css\";i:350;s:20:\"post-terms/style.css\";i:351;s:24:\"post-terms/style.min.css\";i:352;s:24:\"post-title/style-rtl.css\";i:353;s:28:\"post-title/style-rtl.min.css\";i:354;s:20:\"post-title/style.css\";i:355;s:24:\"post-title/style.min.css\";i:356;s:26:\"preformatted/style-rtl.css\";i:357;s:30:\"preformatted/style-rtl.min.css\";i:358;s:22:\"preformatted/style.css\";i:359;s:26:\"preformatted/style.min.css\";i:360;s:24:\"pullquote/editor-rtl.css\";i:361;s:28:\"pullquote/editor-rtl.min.css\";i:362;s:20:\"pullquote/editor.css\";i:363;s:24:\"pullquote/editor.min.css\";i:364;s:23:\"pullquote/style-rtl.css\";i:365;s:27:\"pullquote/style-rtl.min.css\";i:366;s:19:\"pullquote/style.css\";i:367;s:23:\"pullquote/style.min.css\";i:368;s:23:\"pullquote/theme-rtl.css\";i:369;s:27:\"pullquote/theme-rtl.min.css\";i:370;s:19:\"pullquote/theme.css\";i:371;s:23:\"pullquote/theme.min.css\";i:372;s:39:\"query-pagination-numbers/editor-rtl.css\";i:373;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:374;s:35:\"query-pagination-numbers/editor.css\";i:375;s:39:\"query-pagination-numbers/editor.min.css\";i:376;s:31:\"query-pagination/editor-rtl.css\";i:377;s:35:\"query-pagination/editor-rtl.min.css\";i:378;s:27:\"query-pagination/editor.css\";i:379;s:31:\"query-pagination/editor.min.css\";i:380;s:30:\"query-pagination/style-rtl.css\";i:381;s:34:\"query-pagination/style-rtl.min.css\";i:382;s:26:\"query-pagination/style.css\";i:383;s:30:\"query-pagination/style.min.css\";i:384;s:25:\"query-title/style-rtl.css\";i:385;s:29:\"query-title/style-rtl.min.css\";i:386;s:21:\"query-title/style.css\";i:387;s:25:\"query-title/style.min.css\";i:388;s:20:\"query/editor-rtl.css\";i:389;s:24:\"query/editor-rtl.min.css\";i:390;s:16:\"query/editor.css\";i:391;s:20:\"query/editor.min.css\";i:392;s:19:\"quote/style-rtl.css\";i:393;s:23:\"quote/style-rtl.min.css\";i:394;s:15:\"quote/style.css\";i:395;s:19:\"quote/style.min.css\";i:396;s:19:\"quote/theme-rtl.css\";i:397;s:23:\"quote/theme-rtl.min.css\";i:398;s:15:\"quote/theme.css\";i:399;s:19:\"quote/theme.min.css\";i:400;s:23:\"read-more/style-rtl.css\";i:401;s:27:\"read-more/style-rtl.min.css\";i:402;s:19:\"read-more/style.css\";i:403;s:23:\"read-more/style.min.css\";i:404;s:18:\"rss/editor-rtl.css\";i:405;s:22:\"rss/editor-rtl.min.css\";i:406;s:14:\"rss/editor.css\";i:407;s:18:\"rss/editor.min.css\";i:408;s:17:\"rss/style-rtl.css\";i:409;s:21:\"rss/style-rtl.min.css\";i:410;s:13:\"rss/style.css\";i:411;s:17:\"rss/style.min.css\";i:412;s:21:\"search/editor-rtl.css\";i:413;s:25:\"search/editor-rtl.min.css\";i:414;s:17:\"search/editor.css\";i:415;s:21:\"search/editor.min.css\";i:416;s:20:\"search/style-rtl.css\";i:417;s:24:\"search/style-rtl.min.css\";i:418;s:16:\"search/style.css\";i:419;s:20:\"search/style.min.css\";i:420;s:20:\"search/theme-rtl.css\";i:421;s:24:\"search/theme-rtl.min.css\";i:422;s:16:\"search/theme.css\";i:423;s:20:\"search/theme.min.css\";i:424;s:24:\"separator/editor-rtl.css\";i:425;s:28:\"separator/editor-rtl.min.css\";i:426;s:20:\"separator/editor.css\";i:427;s:24:\"separator/editor.min.css\";i:428;s:23:\"separator/style-rtl.css\";i:429;s:27:\"separator/style-rtl.min.css\";i:430;s:19:\"separator/style.css\";i:431;s:23:\"separator/style.min.css\";i:432;s:23:\"separator/theme-rtl.css\";i:433;s:27:\"separator/theme-rtl.min.css\";i:434;s:19:\"separator/theme.css\";i:435;s:23:\"separator/theme.min.css\";i:436;s:24:\"shortcode/editor-rtl.css\";i:437;s:28:\"shortcode/editor-rtl.min.css\";i:438;s:20:\"shortcode/editor.css\";i:439;s:24:\"shortcode/editor.min.css\";i:440;s:24:\"site-logo/editor-rtl.css\";i:441;s:28:\"site-logo/editor-rtl.min.css\";i:442;s:20:\"site-logo/editor.css\";i:443;s:24:\"site-logo/editor.min.css\";i:444;s:23:\"site-logo/style-rtl.css\";i:445;s:27:\"site-logo/style-rtl.min.css\";i:446;s:19:\"site-logo/style.css\";i:447;s:23:\"site-logo/style.min.css\";i:448;s:27:\"site-tagline/editor-rtl.css\";i:449;s:31:\"site-tagline/editor-rtl.min.css\";i:450;s:23:\"site-tagline/editor.css\";i:451;s:27:\"site-tagline/editor.min.css\";i:452;s:26:\"site-tagline/style-rtl.css\";i:453;s:30:\"site-tagline/style-rtl.min.css\";i:454;s:22:\"site-tagline/style.css\";i:455;s:26:\"site-tagline/style.min.css\";i:456;s:25:\"site-title/editor-rtl.css\";i:457;s:29:\"site-title/editor-rtl.min.css\";i:458;s:21:\"site-title/editor.css\";i:459;s:25:\"site-title/editor.min.css\";i:460;s:24:\"site-title/style-rtl.css\";i:461;s:28:\"site-title/style-rtl.min.css\";i:462;s:20:\"site-title/style.css\";i:463;s:24:\"site-title/style.min.css\";i:464;s:26:\"social-link/editor-rtl.css\";i:465;s:30:\"social-link/editor-rtl.min.css\";i:466;s:22:\"social-link/editor.css\";i:467;s:26:\"social-link/editor.min.css\";i:468;s:27:\"social-links/editor-rtl.css\";i:469;s:31:\"social-links/editor-rtl.min.css\";i:470;s:23:\"social-links/editor.css\";i:471;s:27:\"social-links/editor.min.css\";i:472;s:26:\"social-links/style-rtl.css\";i:473;s:30:\"social-links/style-rtl.min.css\";i:474;s:22:\"social-links/style.css\";i:475;s:26:\"social-links/style.min.css\";i:476;s:21:\"spacer/editor-rtl.css\";i:477;s:25:\"spacer/editor-rtl.min.css\";i:478;s:17:\"spacer/editor.css\";i:479;s:21:\"spacer/editor.min.css\";i:480;s:20:\"spacer/style-rtl.css\";i:481;s:24:\"spacer/style-rtl.min.css\";i:482;s:16:\"spacer/style.css\";i:483;s:20:\"spacer/style.min.css\";i:484;s:20:\"table/editor-rtl.css\";i:485;s:24:\"table/editor-rtl.min.css\";i:486;s:16:\"table/editor.css\";i:487;s:20:\"table/editor.min.css\";i:488;s:19:\"table/style-rtl.css\";i:489;s:23:\"table/style-rtl.min.css\";i:490;s:15:\"table/style.css\";i:491;s:19:\"table/style.min.css\";i:492;s:19:\"table/theme-rtl.css\";i:493;s:23:\"table/theme-rtl.min.css\";i:494;s:15:\"table/theme.css\";i:495;s:19:\"table/theme.min.css\";i:496;s:24:\"tag-cloud/editor-rtl.css\";i:497;s:28:\"tag-cloud/editor-rtl.min.css\";i:498;s:20:\"tag-cloud/editor.css\";i:499;s:24:\"tag-cloud/editor.min.css\";i:500;s:23:\"tag-cloud/style-rtl.css\";i:501;s:27:\"tag-cloud/style-rtl.min.css\";i:502;s:19:\"tag-cloud/style.css\";i:503;s:23:\"tag-cloud/style.min.css\";i:504;s:28:\"template-part/editor-rtl.css\";i:505;s:32:\"template-part/editor-rtl.min.css\";i:506;s:24:\"template-part/editor.css\";i:507;s:28:\"template-part/editor.min.css\";i:508;s:27:\"template-part/theme-rtl.css\";i:509;s:31:\"template-part/theme-rtl.min.css\";i:510;s:23:\"template-part/theme.css\";i:511;s:27:\"template-part/theme.min.css\";i:512;s:30:\"term-description/style-rtl.css\";i:513;s:34:\"term-description/style-rtl.min.css\";i:514;s:26:\"term-description/style.css\";i:515;s:30:\"term-description/style.min.css\";i:516;s:27:\"text-columns/editor-rtl.css\";i:517;s:31:\"text-columns/editor-rtl.min.css\";i:518;s:23:\"text-columns/editor.css\";i:519;s:27:\"text-columns/editor.min.css\";i:520;s:26:\"text-columns/style-rtl.css\";i:521;s:30:\"text-columns/style-rtl.min.css\";i:522;s:22:\"text-columns/style.css\";i:523;s:26:\"text-columns/style.min.css\";i:524;s:19:\"verse/style-rtl.css\";i:525;s:23:\"verse/style-rtl.min.css\";i:526;s:15:\"verse/style.css\";i:527;s:19:\"verse/style.min.css\";i:528;s:20:\"video/editor-rtl.css\";i:529;s:24:\"video/editor-rtl.min.css\";i:530;s:16:\"video/editor.css\";i:531;s:20:\"video/editor.min.css\";i:532;s:19:\"video/style-rtl.css\";i:533;s:23:\"video/style-rtl.min.css\";i:534;s:15:\"video/style.css\";i:535;s:19:\"video/style.min.css\";i:536;s:19:\"video/theme-rtl.css\";i:537;s:23:\"video/theme-rtl.min.css\";i:538;s:15:\"video/theme.css\";i:539;s:19:\"video/theme.min.css\";}}','on'),
(125,'nonce_key','H-zg5JNxGq[LkZ~,H.gKmSf=KVgW{o<n$Awe??-H4e8D7@ YgEoMq%~yAyfy:e=!','off'),
(126,'nonce_salt','D:&B9+wLODV<}_s}0/ZkE629qMp&%V}8^/1PBO|-=$@8!wneb1u7:kd1mDDGC(1t','off'),
(127,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1732052499;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\";}}}}','off'),
(128,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(129,'recovery_keys','a:0:{}','off'),
(130,'auth_key',';P<WUge:JeQG[H&YR=Wgftlj[--SV JjAE@x$AX4/XMs(1[-h3E[OQwI6*+D2:=t','off'),
(131,'auth_salt','hX`}!5AQI`]Oh4gUpi-NQbUiT. nP/l{Wk<C/e*ZDg1dbqaYAi>_Uq1/pF+8BC#m','off'),
(132,'logged_in_key','TQ+y)X8iWIQ{P+bTg;[v@>^$Mx2$3X0!NR5~W{/}I^:xV~/F@Hqw[wh4hAx7nh!A','off'),
(133,'logged_in_salt','8#w_gd^1owFp@MX1a7_G=70 iAU7wAxHO1$Pb*.Qy 3nGK.f?Ok-R1*.kxGwhS~$','off'),
(156,'can_compress_scripts','0','on'),
(159,'finished_updating_comment_type','1','auto'),
(160,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(161,'recently_activated','a:1:{s:20:\"cornerstone/main.php\";i:1732052190;}','off'),
(166,'secure_auth_key','>$?NE9KPow3Hw-PgHa#o$:Y[niDaDt(CGcpltE/wnMw.+g+&Uuj9nmy= M4&{W79','off'),
(167,'secure_auth_salt','N]Gyb:(=3 <.T,1t|~]zMM_UPt*XA;gDFpfH0SGpQfgCn5@J51gQa-knba^u=th&','off'),
(225,'auto_update_plugins','a:1:{i:0;s:20:\"cornerstone/main.php\";}','off'),
(253,'https_detection_errors','a:0:{}','auto'),
(254,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":5,\"critical\":0}','on'),
(267,'ftp_credentials','a:3:{s:8:\"hostname\";s:16:\"vm3630.mjhst.com\";s:8:\"username\";s:8:\"pxcvU_wp\";s:15:\"connection_type\";s:4:\"ftps\";}','off'),
(270,'current_theme','Pro','auto'),
(271,'theme_mods_pro','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:3;s:6:\"footer\";i:3;}s:18:\"custom_css_post_id\";i:-1;}','on'),
(272,'theme_switched','','auto'),
(273,'recovery_mode_email_last_sent','1732052500','auto'),
(274,'cs_csv_enabled','1','on'),
(275,'cs_graphql_enabled','1','on'),
(276,'cornerstone_version','7.5.11','on'),
(279,'pro_version','6.5.11','on'),
(280,'x_dismiss_update_notice','1','auto'),
(285,'cornerstone_font_items','[{\\\"title\\\":\\\"Body Copy\\\",\\\"family\\\":\\\"Mr Eaves XL Modern\\\",\\\"stack\\\":\\\"\\\\\\\"mr-eaves-xl-modern\\\\\\\",sans-serif\\\",\\\"source\\\":\\\"typekit\\\",\\\"_id\\\":\\\"426f647920436f7079\\\",\\\"weightNormal\\\":\\\"400\\\",\\\"weightBold\\\":\\\"700\\\",\\\"weightSelection\\\":[\\\"400\\\",\\\"400i\\\",\\\"700\\\",\\\"700i\\\"],\\\"name\\\":\\\"Mr Eaves XL Modern\\\"},{\\\"title\\\":\\\"Headings\\\",\\\"family\\\":\\\"Mr Eaves XL Modern\\\",\\\"stack\\\":\\\"\\\\\\\"mr-eaves-xl-modern\\\\\\\",sans-serif\\\",\\\"source\\\":\\\"typekit\\\",\\\"_id\\\":\\\"48656164696e6773\\\",\\\"weightNormal\\\":\\\"400\\\",\\\"weightBold\\\":\\\"700\\\",\\\"weightSelection\\\":[\\\"400\\\",\\\"400i\\\",\\\"700\\\",\\\"700i\\\"],\\\"name\\\":\\\"Mr Eaves XL Modern\\\"},{\\\"name\\\":\\\"geneva\\\",\\\"source\\\":\\\"system\\\",\\\"family\\\":\\\"Geneva\\\",\\\"stack\\\":\\\"Geneva, Tahoma, Verdana, sans-serif\\\",\\\"weightNormal\\\":\\\"400\\\",\\\"weightBold\\\":\\\"700\\\",\\\"title\\\":\\\"Geneva\\\",\\\"_id\\\":\\\"Wt19dMF05FiwZGI3BF\\\",\\\"weightSelection\\\":[\\\"100\\\",\\\"200\\\",\\\"300\\\",\\\"400\\\",\\\"500\\\",\\\"600\\\",\\\"700\\\",\\\"800\\\",\\\"900\\\"]}]','auto'),
(286,'cornerstone_font_config','{\\\"googleSubsets\\\":[],\\\"googleDisabled\\\":false,\\\"googleFontsURL\\\":\\\"\\\",\\\"typekitKitID\\\":\\\"\\\",\\\"typekitItems\\\":[],\\\"customFontItems\\\":[],\\\"customFontFaceCSS\\\":\\\"\\\",\\\"fontDisplay\\\":\\\"auto\\\"}','auto'),
(318,'cs_max_courses','a:3:{s:13:\"hasMaxSupport\";b:0;s:13:\"hasAnySupport\";b:1;s:4:\"data\";a:6:{i:0;a:8:{s:11:\"external_id\";i:13;s:5:\"title\";s:9:\"Personify\";s:4:\"slug\";s:9:\"personify\";s:5:\"image\";s:85:\"https://max.theme.co/pluginfile.php/253/course/overviewfiles/1-personify-1280x720.png\";s:9:\"tileImage\";s:82:\"https://max.theme.co/pluginfile.php/253/course/overviewfiles/personify-100x100.png\";s:9:\"startDate\";i:1709337600;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:194:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\">Beautifully designed, professionally built and highly scalable sites for coaches, consultants &amp; personal brands.<br></p></div>\";}i:1;a:8:{s:11:\"external_id\";i:12;s:5:\"title\";s:18:\"Cornerstone Charts\";s:4:\"slug\";s:18:\"cornerstone-charts\";s:5:\"image\";s:83:\"https://max.theme.co/pluginfile.php/236/course/overviewfiles/cornerstone-charts.png\";s:9:\"tileImage\";s:86:\"https://max.theme.co/pluginfile.php/236/course/overviewfiles/max-cornerstonecharts.png\";s:9:\"startDate\";i:1688166000;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:150:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\">Meet the ultimate data visualization tool for WordPress and Cornerstone.<br></p></div>\";}i:2;a:8:{s:11:\"external_id\";i:9;s:5:\"title\";s:16:\"Web Design Magic\";s:4:\"slug\";s:16:\"web-design-magic\";s:5:\"image\";s:68:\"https://max.theme.co/pluginfile.php/178/course/overviewfiles/wdm.png\";s:9:\"tileImage\";s:85:\"https://max.theme.co/pluginfile.php/178/course/overviewfiles/z-max-webdesignmagic.png\";s:9:\"startDate\";i:1670889600;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:188:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\">Discover the power of design systems and how to use them to build better, faster, and more beautiful websites.<br></p></div>\";}i:3;a:8:{s:11:\"external_id\";i:7;s:5:\"title\";s:9:\"Gridorama\";s:4:\"slug\";s:9:\"gridorama\";s:5:\"image\";s:88:\"https://max.theme.co/pluginfile.php/116/course/overviewfiles/course-poster-gridorama.png\";s:9:\"tileImage\";s:80:\"https://max.theme.co/pluginfile.php/116/course/overviewfiles/z-max-gridorama.png\";s:9:\"startDate\";i:1670889600;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:280:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\"></p><p>Welcome to Gridorama! We\'ve put together a few notes on how to access\n the training, templates, and support. We look forward to joining you \nfor the journey…now let\'s make you a Grid Master!</p><p></p></div>\";}i:4;a:8:{s:11:\"external_id\";i:3;s:5:\"title\";s:13:\"Super Loopers\";s:4:\"slug\";s:13:\"super-loopers\";s:5:\"image\";s:86:\"https://max.theme.co/pluginfile.php/21/course/overviewfiles/super-loopers-postster.png\";s:9:\"tileImage\";s:82:\"https://max.theme.co/pluginfile.php/21/course/overviewfiles/z-max-superloopers.png\";s:9:\"startDate\";i:1668297600;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:202:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\">Providers, Consumers, Oh my. Learn how to dynamically loop through arrays of data, and create reusable, data driven designs.<br></p></div>\";}i:5;a:8:{s:11:\"external_id\";i:2;s:5:\"title\";s:14:\"Modern Sliders\";s:4:\"slug\";s:14:\"modern-sliders\";s:5:\"image\";s:92:\"https://max.theme.co/pluginfile.php/14/course/overviewfiles/course-poster-modern-sliders.png\";s:9:\"tileImage\";s:83:\"https://max.theme.co/pluginfile.php/14/course/overviewfiles/z-max-modernsliders.png\";s:9:\"startDate\";i:1668297600;s:10:\"introTitle\";s:0:\"\";s:11:\"description\";s:217:\"<div class=\"no-overflow\"><p dir=\"ltr\" style=\"text-align: left;\">We\'re so excited to have you on board for Modern Sliders. Here are a\n    few quick notes about going through the course and expansion pack.<br></p></div>\";}}}','auto'),
(319,'cornerstone_color_items','[{\\\"value\\\":\\\"#000000\\\",\\\"title\\\":\\\"Color 8\\\",\\\"_id\\\":\\\"QcdD31Af7TUGZ3jcje\\\"},{\\\"value\\\":\\\"#010926\\\",\\\"title\\\":\\\"Color 10\\\",\\\"_id\\\":\\\"d5OcSiPv75yItABYW7\\\"},{\\\"value\\\":\\\"#02275f\\\",\\\"title\\\":\\\"Color 11\\\",\\\"_id\\\":\\\"MqGYJUpXapYSDre2cf\\\"},{\\\"value\\\":\\\"#0b5999\\\",\\\"title\\\":\\\"Color 12\\\",\\\"_id\\\":\\\"tVcoR2z4jLtc2oTKy2\\\"},{\\\"value\\\":\\\"#a7f4fe\\\",\\\"title\\\":\\\"Color 9\\\",\\\"_id\\\":\\\"DTqAl1J3pKb4jEA7oQ\\\"},{\\\"value\\\":\\\"#e39c1e\\\",\\\"title\\\":\\\"Primary\\\",\\\"_id\\\":\\\"primary\\\"},{\\\"title\\\":\\\"Blue 1\\\",\\\"value\\\":\\\"#083252\\\",\\\"_id\\\":\\\"4272616e64205072696d617279\\\"},{\\\"title\\\":\\\"Blue 2\\\",\\\"value\\\":\\\"rgb(18, 72, 113)\\\",\\\"_id\\\":\\\"4272616e64205365636f6e64617279\\\"},{\\\"title\\\":\\\"Link\\\",\\\"value\\\":\\\"#ffffff\\\",\\\"_id\\\":\\\"4c696e6b\\\"},{\\\"value\\\":\\\"rgba(255, 255, 255, 0.25)\\\",\\\"title\\\":\\\"Color 11\\\",\\\"_id\\\":\\\"YFP6101dwXohQOJ4sw\\\"},{\\\"value\\\":\\\"#299BD7\\\",\\\"title\\\":\\\"Secondary\\\",\\\"_id\\\":\\\"secondary\\\"},{\\\"title\\\":\\\"Button Hover\\\",\\\"value\\\":\\\"rgb(43, 104, 150)\\\",\\\"_id\\\":\\\"55f1247e-3b5a-4998-bab2-1d4007a63b14\\\"},{\\\"value\\\":\\\"rgb(255, 255, 255)\\\",\\\"title\\\":\\\"Color 9\\\",\\\"_id\\\":\\\"bixekMqNb6S1TqpoP7\\\"}]','auto'),
(337,'x_product_validation_key','a833c226-ff6e-46bb-8808-e3a04f9f1727','auto'),
(338,'x_max_plugins','a:1:{i:0;a:9:{s:4:\"slug\";s:18:\"cornerstone-charts\";s:6:\"plugin\";s:41:\"cornerstone-charts/cornerstone-charts.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:12:\"release_date\";s:16:\"October 08, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:11:\"external_id\";s:2:\"12\";s:6:\"tested\";s:3:\"6.2\";s:11:\"x-extension\";a:10:{s:5:\"title\";s:18:\"Cornerstone Charts\";s:11:\"description\";s:29:\"Visualize your data with ease\";s:3:\"hex\";s:7:\"#00FF00\";s:3:\"rgb\";s:9:\"0, 255, 0\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:86:\"https://max.theme.co/pluginfile.php/236/course/overviewfiles/max-cornerstonecharts.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:36:\"https://theme.co/cornerstone-charts/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:73:\"Meet the ultimate data visualization tool for WordPress and Cornerstone.\n\";}}}','auto'),
(339,'x_extension_list','a:27:{i:0;a:14:{s:4:\"slug\";s:7:\"acf-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\" 6.3.11\";s:7:\"package\";s:126:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/advanced-custom-fields-pro.zip\";s:5:\"title\";s:7:\"ACF Pro\";s:11:\"description\";s:130:\"The most powerful custom data management tool on WordPress comes to Themeco&apos;s suite of products with custom&nbsp;integration.\";s:3:\"hex\";s:7:\"#ff584c\";s:3:\"rgb\";s:11:\"255, 88, 76\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:104:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/acf-pro.png\";s:6:\"author\";s:13:\"Elliot Condon\";s:8:\"demo_url\";s:30:\"https://demo.theme.co/acf-pro/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:826:\"ACF Pro allows you to create custom fields for any post type with a vast array of display options, which you can pull through on the frontend. When adding a new field you\'ll be met with the form to create and name your field.\n\n![modfig|ACF 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/acf_pro/01.png)\n\nSelect your field type from a huge array of options:\n\n![modfig|ACF 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/acf_pro/02.png)\n\nUsing our included integration you can call the ACF field anywhere in your pages and posts with a simple shorthand like <code>&#123;&#123;acf:author_bio&#125;&#125;</code>. With that one simple and powerful piece of code, your custom field content will be output on the frontend of your site.\n\";}i:1;a:15:{s:4:\"slug\";s:11:\"convertplug\";s:6:\"plugin\";s:27:\"convertplug/convertplug.php\";s:11:\"new_version\";s:6:\"3.5.29\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/convertplug.zip\";s:9:\"docs_slug\";s:11:\"convertplus\";s:5:\"title\";s:11:\"ConvertPlus\";s:11:\"description\";s:132:\"Transform your website into a lead generation powerhouse! Fuel engagement, get more subscribers, and increase conversion&nbsp;rates.\";s:3:\"hex\";s:7:\"#fecd09\";s:3:\"rgb\";s:11:\"254, 205, 9\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/convertplug.png\";s:6:\"author\";s:16:\"Brainstorm Force\";s:8:\"demo_url\";s:34:\"https://demo.theme.co/convertplug/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:1:{i:0;a:2:{s:5:\"label\";s:17:\"See Live Examples\";s:4:\"href\";s:47:\"https://www.convertplug.com/plus/popup-designs/\";}}}i:2;a:16:{s:4:\"slug\";s:41:\"cost-estimation-and-payment-forms-builder\";s:6:\"plugin\";s:38:\"WP_Estimation_Form/estimation-form.php\";s:11:\"new_version\";s:7:\"10.1.92\";s:7:\"package\";s:118:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/WP_Estimation_Form.zip\";s:9:\"docs_slug\";s:24:\"estimation-payment-forms\";s:5:\"title\";s:26:\"Estimation & Payment Forms\";s:11:\"short_title\";s:25:\"WP Cost E&P Forms Builder\";s:11:\"description\";s:150:\"Easily sell any customized products or services creating your own flat and responsive cost calculator or payment forms (even with&nbsp;subscriptions)!\";s:3:\"hex\";s:7:\"#1dc4a6\";s:3:\"rgb\";s:12:\"29, 196, 166\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:130:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/cost-estimation-and-payment-forms.png\";s:6:\"author\";s:15:\"Charly (loopus)\";s:8:\"demo_url\";s:56:\"https://demo.theme.co/cost-estimation-and-payment-forms/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:4:{i:0;a:2:{s:5:\"label\";s:15:\"Cost Estimation\";s:4:\"href\";s:81:\"http://www.wordpress-estimation-payment-forms.com/demo-of-a-cost-estimation-form/\";}i:1;a:2:{s:5:\"label\";s:20:\"Subscription Payment\";s:4:\"href\";s:86:\"http://www.wordpress-estimation-payment-forms.com/demo-of-a-subscription-payment-form/\";}i:2;a:2:{s:5:\"label\";s:4:\"Shop\";s:4:\"href\";s:55:\"http://www.wordpress-estimation-payment-forms.com/shop/\";}i:3;a:2:{s:5:\"label\";s:10:\"Components\";s:4:\"href\";s:74:\"http://www.wordpress-estimation-payment-forms.com/demo-of-some-components/\";}}}i:3;a:14:{s:4:\"slug\";s:14:\"envira-gallery\";s:6:\"plugin\";s:33:\"envira-gallery/envira-gallery.php\";s:11:\"new_version\";s:6:\"1.10.0\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/envira-gallery.zip\";s:5:\"title\";s:14:\"Envira Gallery\";s:11:\"description\";s:140:\"Envira Gallery is a fantastic responsive WordPress gallery plugin. Create beautiful photo and video galleries for your site in&nbsp;minutes.\";s:3:\"hex\";s:7:\"#8fb84a\";s:3:\"rgb\";s:12:\"143, 184, 74\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/envira-gallery.png\";s:6:\"author\";s:14:\"Thomas Griffin\";s:8:\"demo_url\";s:37:\"https://demo.theme.co/envira-gallery/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:5:{i:0;a:2:{s:5:\"label\";s:6:\"Albums\";s:4:\"href\";s:42:\"http://enviragallery.com/demo/albums-demo/\";}i:1;a:2:{s:5:\"label\";s:10:\"Pagination\";s:4:\"href\";s:54:\"http://enviragallery.com/demo/gallery-pagination-demo/\";}i:2;a:2:{s:5:\"label\";s:8:\"Lightbox\";s:4:\"href\";s:52:\"http://enviragallery.com/demo/lightbox-gallery-demo/\";}i:3;a:2:{s:5:\"label\";s:7:\"Masonry\";s:4:\"href\";s:51:\"http://enviragallery.com/demo/masonry-gallery-demo/\";}i:4;a:2:{s:5:\"label\";s:5:\"Video\";s:4:\"href\";s:49:\"http://enviragallery.com/demo/video-gallery-demo/\";}}}i:4;a:14:{s:4:\"slug\";s:14:\"essential-grid\";s:6:\"plugin\";s:33:\"essential-grid/essential-grid.php\";s:11:\"new_version\";s:5:\"3.1.5\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/essential-grid.zip\";s:5:\"title\";s:14:\"Essential Grid\";s:11:\"description\";s:156:\"Essential Grid is an all-purpose grid building solution for WordPress that allows you to display various content formats in a highly customizable&nbsp;grid.\";s:3:\"hex\";s:7:\"#e43202\";s:3:\"rgb\";s:10:\"228, 50, 2\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/essential-grid.png\";s:6:\"author\";s:10:\"ThemePunch\";s:8:\"demo_url\";s:37:\"https://demo.theme.co/essential-grid/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:4:{i:0;a:2:{s:5:\"label\";s:7:\"Gallery\";s:4:\"href\";s:82:\"https://essential.themepunch.com/template_library/joe-mullen-custom-image-gallery/\";}i:1;a:2:{s:5:\"label\";s:9:\"Portfolio\";s:4:\"href\";s:85:\"https://essential.themepunch.com/template_library/bernie-federko-2-portfolio-gallery/\";}i:2;a:2:{s:5:\"label\";s:15:\"Infinite Scroll\";s:4:\"href\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-2-player/\";}i:3;a:2:{s:5:\"label\";s:10:\"Pagination\";s:4:\"href\";s:93:\"https://essential.themepunch.com/template_library/hoover-masonry-wordpress-post-gallery-grid/\";}}}i:5;a:14:{s:4:\"slug\";s:11:\"js_composer\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:11:\"new_version\";s:1:\"8\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/js_composer.zip\";s:9:\"docs_slug\";s:22:\"wp-bakery-page-builder\";s:5:\"title\";s:22:\"WP Bakery Page Builder\";s:11:\"description\";s:134:\"WP Bakery Page Builder is a page builder plugin for WordPress that allows you to build layouts through their graphical&nbsp;interface.\";s:3:\"hex\";s:7:\"#3c3c3c\";s:3:\"rgb\";s:12:\"132, 161, 57\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:118:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/wpbakery-page-builder.png\";s:6:\"author\";s:8:\"WPBakery\";s:8:\"demo_url\";s:38:\"https://demo.theme.co/visual-composer/\";s:6:\"status\";s:6:\"public\";}i:6;a:14:{s:4:\"slug\";s:11:\"layerslider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:11:\"new_version\";s:6:\"7.11.1\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/LayerSlider.zip\";s:5:\"title\";s:11:\"LayerSlider\";s:11:\"description\";s:148:\"LayerSlider is the most advanced responsive WordPress slider plugin with the famous Parallax Effect and over two hundred 2D and 3D&nbsp;transitions.\";s:3:\"hex\";s:7:\"#d44732\";s:3:\"rgb\";s:11:\"212, 71, 50\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/layerslider.png\";s:6:\"author\";s:14:\"Kreatura Media\";s:8:\"demo_url\";s:34:\"https://demo.theme.co/layerslider/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:4:{i:0;a:2:{s:5:\"label\";s:9:\"Discovery\";s:4:\"href\";s:67:\"https://layerslider.kreaturamedia.com/sliders/discover-the-details/\";}i:1;a:2:{s:5:\"label\";s:9:\"3D Canyon\";s:4:\"href\";s:67:\"https://layerslider.kreaturamedia.com/sliders/3d-canyon-experience/\";}i:2;a:2:{s:5:\"label\";s:14:\"Vintage Photos\";s:4:\"href\";s:61:\"https://layerslider.kreaturamedia.com/sliders/vintage-photos/\";}i:3;a:2:{s:5:\"label\";s:8:\"Aquarium\";s:4:\"href\";s:55:\"https://layerslider.kreaturamedia.com/sliders/aquarium/\";}}}i:7;a:14:{s:4:\"slug\";s:22:\"modern-events-calendar\";s:6:\"plugin\";s:30:\"modern-events-calendar/mec.php\";s:11:\"new_version\";s:6:\"7.17.0\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/modern-events-calendar.zip\";s:5:\"title\";s:22:\"Modern Events Calendar\";s:11:\"description\";s:157:\"Modern Events Calendar is one of the most powerful event and ticketing solutions available for WordPress that both developers and site owners will&nbsp;love!\";s:3:\"hex\";s:7:\"#6dd6ee\";s:3:\"rgb\";s:13:\"109, 214, 238\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/modern-events-calendar.png\";s:6:\"author\";s:11:\"Webnus Team\";s:8:\"demo_url\";s:45:\"https://demo.theme.co/modern-events-calendar/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:5:{i:0;a:2:{s:5:\"label\";s:4:\"Full\";s:4:\"href\";s:56:\"https://webnus.net/modern-events-calendar/full-calendar/\";}i:1;a:2:{s:5:\"label\";s:7:\"Monthly\";s:4:\"href\";s:75:\"https://webnus.net/modern-events-calendar/calendarmonthly-view-clean-style/\";}i:2;a:2:{s:5:\"label\";s:6:\"Weekly\";s:4:\"href\";s:54:\"https://webnus.net/modern-events-calendar/weekly-view/\";}i:3;a:2:{s:5:\"label\";s:6:\"Slider\";s:4:\"href\";s:61:\"https://webnus.net/modern-events-calendar/slider-view-type-1/\";}i:4;a:2:{s:5:\"label\";s:8:\"Carousel\";s:4:\"href\";s:58:\"https://webnus.net/modern-events-calendar/carousel-type-2/\";}}}i:8;a:15:{s:4:\"slug\";s:9:\"revslider\";s:6:\"plugin\";s:23:\"revslider/revslider.php\";s:11:\"new_version\";s:6:\"6.7.23\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/revslider.zip\";s:9:\"docs_slug\";s:17:\"slider-revolution\";s:5:\"title\";s:17:\"Slider Revolution\";s:11:\"description\";s:146:\"Create responsive sliders with must-see-effects and high end multi-layer capabilities, all while maintaining your search engine&nbsp;optimization.\";s:3:\"hex\";s:7:\"#ed3b3b\";s:3:\"rgb\";s:11:\"237, 59, 59\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:106:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/revslider.png\";s:6:\"author\";s:10:\"ThemePunch\";s:8:\"demo_url\";s:40:\"https://demo.theme.co/slider-revolution/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:4:{i:0;a:2:{s:5:\"label\";s:11:\"Art Gallery\";s:4:\"href\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";}i:1;a:2:{s:5:\"label\";s:13:\"Hero Selector\";s:4:\"href\";s:67:\"https://revolution.themepunch.com/church-website-template-selector/\";}i:2;a:2:{s:5:\"label\";s:10:\"Special FX\";s:4:\"href\";s:57:\"https://revolution.themepunch.com/nature-explorer-slider/\";}i:3;a:2:{s:5:\"label\";s:12:\"Dynamic News\";s:4:\"href\";s:56:\"https://revolution.themepunch.com/wordpress-news-slider/\";}}}i:9;a:14:{s:4:\"slug\";s:13:\"superfly-menu\";s:6:\"plugin\";s:22:\"superfly-menu/main.php\";s:11:\"new_version\";s:6:\"5.0.30\";s:7:\"package\";s:113:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/superfly-menu.zip\";s:5:\"title\";s:8:\"Superfly\";s:11:\"description\";s:131:\"Superfly brings modern and slick navigation to all WordPress users! Easily craft custom and engaging menu layouts and&nbsp;designs.\";s:3:\"hex\";s:7:\"#a86483\";s:3:\"rgb\";s:13:\"168, 100, 131\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/superfly-menu.png\";s:6:\"author\";s:13:\"Looks Awesome\";s:8:\"demo_url\";s:31:\"https://demo.theme.co/superfly/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:6:{i:0;a:2:{s:5:\"label\";s:9:\"Slide Out\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=1\";}i:1;a:2:{s:5:\"label\";s:12:\"Vertical Bar\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=7\";}i:2;a:2:{s:5:\"label\";s:16:\"Image Background\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=6\";}i:3;a:2:{s:5:\"label\";s:10:\"Panel Skew\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=8\";}i:4;a:2:{s:5:\"label\";s:11:\"Static Menu\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=3\";}i:5;a:2:{s:5:\"label\";s:10:\"Fullscreen\";s:4:\"href\";s:41:\"http://superfly.looks-awesome.com/?demo=5\";}}}i:10;a:15:{s:4:\"slug\";s:9:\"soliloquy\";s:6:\"plugin\";s:23:\"soliloquy/soliloquy.php\";s:11:\"new_version\";s:6:\"2.6.12\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/soliloquy.zip\";s:5:\"title\";s:9:\"Soliloquy\";s:11:\"description\";s:156:\"Soliloquy is a responsive WordPress slider plugin that makes building sliders in WordPress a task that you will want to experience over and over&nbsp;again.\";s:3:\"hex\";s:7:\"#fb410e\";s:3:\"rgb\";s:11:\"251, 65, 14\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:106:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/soliloquy.png\";s:6:\"author\";s:14:\"Thomas Griffin\";s:8:\"demo_url\";s:32:\"https://demo.theme.co/soliloquy/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:3:{i:0;a:2:{s:5:\"label\";s:8:\"Carousel\";s:4:\"href\";s:50:\"https://soliloquywp.com/demo/carousel-slider-demo/\";}i:1;a:2:{s:5:\"label\";s:8:\"Lightbox\";s:4:\"href\";s:50:\"https://soliloquywp.com/demo/lightbox-slider-demo/\";}i:2;a:2:{s:5:\"label\";s:5:\"Video\";s:4:\"href\";s:47:\"https://soliloquywp.com/demo/video-slider-demo/\";}}s:16:\"description_long\";s:1017:\"While the functionality of drag-and-drop sliders (such as Slider Revolution) is incredibly useful for certain applications, sometimes you just don\'t need all that power if you\'re simply looking to share some photographs. This is where Soliloquy comes in: a lightweight and efficient plugin that gives you everything you need (and nothing you don\'t) to build and manage photo sliders with ease.\n\nWhile there are quite a few options you can configure, the basic workflow goes like this: select your photos, specify your slider dimensions, publish, and then paste the generated shortcode in your page content. It\'s that easy! Soliloquy takes care of all the cropping and formatting giving you the exact images you need, keeping things fast.\n\nThere\'s also plenty of other settings to adjust such as timing events, style, controls, and more. It\'s easily cusotmizably via additional classes, and you can import and export sliders as needed. When it comes to simple photo sharing, it doesn\'t get much better than Soliloquy.\n\";}i:11;a:14:{s:4:\"slug\";s:8:\"the-grid\";s:6:\"plugin\";s:21:\"the-grid/the-grid.php\";s:11:\"new_version\";s:7:\"2.7.9.1\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/the-grid.zip\";s:5:\"title\";s:8:\"The Grid\";s:11:\"description\";s:159:\"The Grid comes with tons of features to build the perfect grid. Take a full control of all the details and create a layout that suits your website&nbsp;design.\";s:3:\"hex\";s:7:\"#37aaa1\";s:3:\"rgb\";s:12:\"55, 170, 161\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:105:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/the-grid.png\";s:6:\"author\";s:9:\"Theme-One\";s:8:\"demo_url\";s:31:\"https://demo.theme.co/the-grid/\";s:6:\"status\";s:10:\"deprecated\";s:10:\"demo_links\";a:6:{i:0;a:2:{s:5:\"label\";s:15:\"Masonry Content\";s:4:\"href\";s:38:\"http://theme-one.com/the-grid/kampala/\";}i:1;a:2:{s:5:\"label\";s:12:\"Minimal Grid\";s:4:\"href\";s:39:\"http://theme-one.com/the-grid/brasilia/\";}i:2;a:2:{s:5:\"label\";s:13:\"Photo Gallery\";s:4:\"href\";s:37:\"http://theme-one.com/the-grid/lisboa/\";}i:3;a:2:{s:5:\"label\";s:9:\"3D Slider\";s:4:\"href\";s:40:\"http://theme-one.com/the-grid/slider-3d/\";}i:4;a:2:{s:5:\"label\";s:9:\"Instagram\";s:4:\"href\";s:40:\"http://theme-one.com/the-grid/instagram/\";}i:5;a:2:{s:5:\"label\";s:7:\"YouTube\";s:4:\"href\";s:40:\"http://theme-one.com/the-grid/youtube-2/\";}}}i:12;a:14:{s:4:\"slug\";s:8:\"ubermenu\";s:6:\"plugin\";s:21:\"ubermenu/ubermenu.php\";s:11:\"new_version\";s:5:\"3.8.5\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/ubermenu.zip\";s:5:\"title\";s:8:\"UberMenu\";s:11:\"description\";s:129:\"UberMenu is a user-friendly, highly customizable, responsive mega menu WordPress plugin that helps you build creative&nbsp;menus.\";s:3:\"hex\";s:7:\"#50bbd9\";s:3:\"rgb\";s:12:\"80, 187, 217\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:105:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/ubermenu.png\";s:6:\"author\";s:26:\"Chris Mavricos, SevenSpark\";s:8:\"demo_url\";s:31:\"https://demo.theme.co/ubermenu/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:6:{i:0;a:2:{s:5:\"label\";s:15:\"Flyout Submenus\";s:4:\"href\";s:29:\"http://wpmegamenu.com/flyout/\";}i:1;a:2:{s:5:\"label\";s:13:\"Mega Submenus\";s:4:\"href\";s:31:\"http://wpmegamenu.com/megamenu/\";}i:2;a:2:{s:5:\"label\";s:6:\"Images\";s:4:\"href\";s:29:\"http://wpmegamenu.com/images/\";}i:3;a:2:{s:5:\"label\";s:16:\"Advanced Content\";s:4:\"href\";s:56:\"http://wpmegamenu.com/custom-content-widgets-shortcodes/\";}i:4;a:2:{s:5:\"label\";s:4:\"Tabs\";s:4:\"href\";s:27:\"http://wpmegamenu.com/tabs/\";}i:5;a:2:{s:5:\"label\";s:15:\"Dynamic Content\";s:4:\"href\";s:30:\"http://wpmegamenu.com/dynamic/\";}}}i:13;a:14:{s:4:\"slug\";s:16:\"tco-content-dock\";s:6:\"plugin\";s:37:\"tco-content-dock/tco-content-dock.php\";s:11:\"new_version\";s:6:\"2.0.10\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-content-dock.zip\";s:5:\"title\";s:12:\"Content Dock\";s:11:\"description\";s:134:\"An incredibly simple and effective tool that allows you to place content or marketing offers in an elegant, non-intrusive&nbsp;manner.\";s:3:\"hex\";s:7:\"#ff9900\";s:3:\"rgb\";s:11:\"255, 153, 0\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-content-dock.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:35:\"https://demo.theme.co/content-dock/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:5:{i:0;a:2:{s:5:\"label\";s:7:\"Demo 01\";s:4:\"href\";s:45:\"https://demo.theme.co/content-dock/example-1/\";}i:1;a:2:{s:5:\"label\";s:7:\"Demo 02\";s:4:\"href\";s:45:\"https://demo.theme.co/content-dock/example-2/\";}i:2;a:2:{s:5:\"label\";s:7:\"Demo 03\";s:4:\"href\";s:45:\"https://demo.theme.co/content-dock/example-3/\";}i:3;a:2:{s:5:\"label\";s:7:\"Demo 04\";s:4:\"href\";s:45:\"https://demo.theme.co/content-dock/example-4/\";}i:4;a:2:{s:5:\"label\";s:7:\"Demo 05\";s:4:\"href\";s:45:\"https://demo.theme.co/content-dock/example-5/\";}}}i:14;a:14:{s:4:\"slug\";s:14:\"tco-custom-404\";s:6:\"plugin\";s:33:\"tco-custom-404/tco-custom-404.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-custom-404.zip\";s:5:\"title\";s:10:\"Custom 404\";s:11:\"description\";s:154:\"Redirect your site’s 404 errors to a custom page that you have complete control over. Create any layout using page templates, Shortcodes, and&nbsp;more!\";s:3:\"hex\";s:7:\"#ff480f\";s:3:\"rgb\";s:11:\"255, 72, 15\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-custom-404.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:33:\"https://demo.theme.co/custom-404/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:848:\"Create anything you can imagine! Utilize simple text (with a bit of humor) if desired to lighten the mood.\n\n![modfig|Custom 404 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/custom_404/01.png)\n\nWith background images, the options are truly endless.\n\n![modfig|Custom 404 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/custom_404/02.png)\n\nAnd you can even take advantage of our shortcodes to implement any type of functionality you desire.\n\n![modfig|Custom 404 3](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/custom_404/03.jpg)\n\nFor a real life example, <a href=\"http://jamesb.com/404-error/\" target=\"_blank\">check out</a> what our good buddy James Brandon did with the 404 Extension and his son Isaac!\n\";}i:15;a:14:{s:4:\"slug\";s:19:\"tco-disqus-comments\";s:6:\"plugin\";s:43:\"tco-disqus-comments/tco-disqus-comments.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:7:\"package\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-disqus-comments.zip\";s:5:\"title\";s:15:\"Disqus Comments\";s:11:\"description\";s:133:\"Take advantage of powerful and unique features by integrating Disqus comments on your website instead of standard WordPress comments.\";s:3:\"hex\";s:7:\"#2e9fff\";s:3:\"rgb\";s:12:\"46, 159, 255\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-disqus-comments.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:38:\"https://demo.theme.co/disqus-comments/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:583:\"![modfig|Disqus Comments 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/disqus_comments/01.png)\n\n![modfig|Disqus Comments 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/disqus_comments/02.png)\n\n![modfig|Disqus Comments 3](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/disqus_comments/03.png)\n\n![modfig|Disqus Comments 4](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/disqus_comments/04.png)\n\";}i:16;a:14:{s:4:\"slug\";s:15:\"tco-email-forms\";s:6:\"plugin\";s:35:\"tco-email-forms/tco-email-forms.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-email-forms.zip\";s:5:\"title\";s:11:\"Email Forms\";s:11:\"description\";s:146:\"Creating custom optin forms has never been this easy (or fun)! Carefully craft every detail of your forms and subscribe users to&nbsp;a&nbsp;list.\";s:3:\"hex\";s:7:\"#7708f1\";s:3:\"rgb\";s:11:\"119, 8, 241\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email-forms.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:34:\"https://demo.theme.co/email-forms/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:551:\"![modfig|Email Forms 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email_forms/01.jpg)\n\n![modfig|Email Forms 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email_forms/02.jpg)\n\n![modfig|Email Forms 3](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email_forms/03.jpg)\n\n![modfig|Email Forms 4](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/email_forms/04.jpg)\n\";}i:17;a:13:{s:4:\"slug\";s:21:\"tco-facebook-comments\";s:6:\"plugin\";s:47:\"tco-facebook-comments/tco-facebook-comments.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-facebook-comments.zip\";s:5:\"title\";s:17:\"Facebook Comments\";s:11:\"description\";s:135:\"Take advantage of powerful and unique features by integrating Facebook comments on your website instead of standard WordPress comments.\";s:3:\"hex\";s:7:\"#46629e\";s:3:\"rgb\";s:11:\"70, 98, 158\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-facebook-comments.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:40:\"https://demo.theme.co/facebook-comments/\";s:6:\"status\";s:6:\"public\";}i:18;a:13:{s:4:\"slug\";s:20:\"tco-google-analytics\";s:6:\"plugin\";s:45:\"tco-google-analytics/tco-google-analytics.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:7:\"package\";s:120:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-google-analytics.zip\";s:5:\"title\";s:16:\"Google Analytics\";s:11:\"description\";s:151:\"Simply drop in your Google Analytics code snippet, select where you’d like it to be output, and you’re good to go! Google Analytics made&nbsp;easy.\";s:3:\"hex\";s:7:\"#98ceed\";s:3:\"rgb\";s:13:\"152, 206, 237\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-google-analytics.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:39:\"https://demo.theme.co/google-analytics/\";s:6:\"status\";s:6:\"public\";}i:19;a:15:{s:4:\"slug\";s:21:\"tco-olark-integration\";s:6:\"plugin\";s:47:\"tco-olark-integration/tco-olark-integration.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-olark-integration.zip\";s:9:\"docs_slug\";s:5:\"olark\";s:5:\"title\";s:17:\"Olark Integration\";s:11:\"description\";s:150:\"Sign up for an Olark account and experience the easiest way to boost your sales, help solve issues, and understand your customers with live&nbsp;chat.\";s:3:\"hex\";s:7:\"#d54f27\";s:3:\"rgb\";s:11:\"213, 79, 39\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-olark-integration.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:40:\"https://demo.theme.co/olark-integration/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:377:\"![modfig|Olark 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/olark/01.jpg)\n\n![modfig|Olark 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/olark/02.jpg)\n\n![modfig|Olark 3](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/olark/03.jpg)\n\";}i:20;a:13:{s:4:\"slug\";s:17:\"tco-smooth-scroll\";s:6:\"plugin\";s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:7:\"package\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-smooth-scroll.zip\";s:5:\"title\";s:13:\"Smooth Scroll\";s:11:\"description\";s:147:\"Manage the physics of your scroll bar with Smooth Scroll! This fun effect is great if you happen to have a lot users who utilize a&nbsp;mousewheel.\";s:3:\"hex\";s:7:\"#689a68\";s:3:\"rgb\";s:13:\"104, 154, 104\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:112:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-smooth-scroll.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:36:\"https://demo.theme.co/smooth-scroll/\";s:6:\"status\";s:6:\"public\";}i:21;a:13:{s:4:\"slug\";s:7:\"snippet\";s:6:\"plugin\";s:19:\"snippet/snippet.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:7:\"package\";s:107:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/snippet.zip\";s:5:\"title\";s:7:\"Snippet\";s:11:\"description\";s:144:\"Snippet is the easiest to use structured data tool available for WordPress. Add your business, organization, or company details in&nbsp;minutes.\";s:3:\"hex\";s:7:\"#00b285\";s:3:\"rgb\";s:11:\"0, 178, 133\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:104:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/snippet.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:34:\"https://demo.theme.co/email-forms/\";s:6:\"status\";s:6:\"public\";}i:22;a:14:{s:4:\"slug\";s:16:\"tco-terms-of-use\";s:6:\"plugin\";s:37:\"tco-terms-of-use/tco-terms-of-use.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-terms-of-use.zip\";s:5:\"title\";s:12:\"Terms of Use\";s:11:\"description\";s:146:\"Add a simple terms that visitors must agree to before completing user registration. No attorneys were injured in the creation of this&nbsp;plugin.\";s:3:\"hex\";s:7:\"#ff2f67\";s:3:\"rgb\";s:12:\"255, 47, 103\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-terms-of-use.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:35:\"https://demo.theme.co/terms-of-use/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:733:\"Easily include a required checkbox to your site\'s registration form that ensures your users agree to your terms of use. The checkbox is easily visible, utilizes native integration and styling, and links out to your terms for users to review before signing up.\n\n![modfig|Terms of Use 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/terms_of_use/01.png)\n\nOur included form validation will ensure that if unchecked, the user will receive a notice that they have not agreed to the terms and must do so to complete the process. Simple and effective.\n\n![modfig|Terms of Use 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/terms_of_use/02.png)\n\";}i:23;a:14:{s:4:\"slug\";s:22:\"tco-under-construction\";s:6:\"plugin\";s:49:\"tco-under-construction/tco-under-construction.php\";s:11:\"new_version\";s:6:\"2.1.10\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-under-construction.zip\";s:5:\"title\";s:18:\"Under Construction\";s:11:\"description\";s:141:\"Got a little work that needs to be done under the hood? Say hello to the easiest maintenance plugin you’ll ever setup on your&nbsp;website.\";s:3:\"hex\";s:7:\"#6d9c9c\";s:3:\"rgb\";s:13:\"109, 156, 156\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-under-construction.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:41:\"https://demo.theme.co/under-construction/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:1277:\"Setting up a maintenance plugin shouldn\'t be a hassle. With Under Construction, you can easily activate a notice to anyone who isn\'t logged in with the click of the mouse. It\'s also incredibly easy to configure and provides plenty of flexibility. Go as minimal as you want:\n\n![modfig|Under Construction 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/under_construction/01.png)\n\nOr you can add a little color and a countdown timer if you\'d like. Colors are customizable for all elements.\n\n![modfig|Under Construction 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/under_construction/02.png)\n\nAdditionally, you can include links to your main social network profiles if you\'d like so that your visitors can keep up with things while you move stuff around.\n\n![modfig|Under Construction 3](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/under_construction/03.png)\n\nYou can even place background images on your maintenance page, making the options truly endless for what you can create!\n\n![modfig|Under Construction 4](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/under_construction/04.jpg)\n\";}i:24;a:14:{s:4:\"slug\";s:14:\"tco-video-lock\";s:6:\"plugin\";s:33:\"tco-video-lock/tco-video-lock.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-video-lock.zip\";s:5:\"title\";s:10:\"Video Lock\";s:11:\"description\";s:145:\"You’ve never seen a video marketing tool quite like Video Lock. Place offers and a call to action in front of your users without any&nbsp;fuss.\";s:3:\"hex\";s:7:\"#fbcb0e\";s:3:\"rgb\";s:12:\"251, 203, 14\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-video-lock.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:33:\"https://demo.theme.co/video-lock/\";s:6:\"status\";s:6:\"public\";s:10:\"demo_links\";a:5:{i:0;a:2:{s:5:\"label\";s:7:\"Demo 01\";s:4:\"href\";s:42:\"http://demo.theme.co/video-lock/example-1/\";}i:1;a:2:{s:5:\"label\";s:7:\"Demo 02\";s:4:\"href\";s:42:\"http://demo.theme.co/video-lock/example-2/\";}i:2;a:2:{s:5:\"label\";s:7:\"Demo 03\";s:4:\"href\";s:42:\"http://demo.theme.co/video-lock/example-3/\";}i:3;a:2:{s:5:\"label\";s:7:\"Demo 04\";s:4:\"href\";s:42:\"http://demo.theme.co/video-lock/example-4/\";}i:4;a:2:{s:5:\"label\";s:7:\"Demo 05\";s:4:\"href\";s:42:\"http://demo.theme.co/video-lock/example-5/\";}}}i:25;a:14:{s:4:\"slug\";s:23:\"tco-woo-checkout-editor\";s:6:\"plugin\";s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:7:\"package\";s:123:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-woo-checkout-editor.zip\";s:5:\"title\";s:19:\"Woo Checkout Editor\";s:11:\"description\";s:146:\"Easily update your WooCommerce checkout page to suit your needs by adding or removing extra fields as needed with the click of&nbsp;a&nbsp;button.\";s:3:\"hex\";s:7:\"#5d7299\";s:3:\"rgb\";s:12:\"93, 114, 153\";s:9:\"exclusive\";b:0;s:8:\"logo_url\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/woo-checkout-editor.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:42:\"https://demo.theme.co/woo-checkout-editor/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:707:\"Woo Checkout Editor is a simple and easy to use WooCommerce Extension that allows you to modify, edit, and remove fields from the WooCommerce checkout process. Allow customers to upload files, or add a new text area for your customers to enter any information you want.\n\n![modfig|Woo Checkout Editor 1](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/woo_checkout_editor/01.png)\n\nUse cases include terms of service (e.g. adding a checkbox and requiring users to agree before checking out), customization (e.g. allow a customer to upload an image or PDF with their design to be added to the product), custom billing (e.g. capturing extra details), and much more!\n\";}i:26;a:14:{s:4:\"slug\";s:15:\"tco-white-label\";s:6:\"plugin\";s:35:\"tco-white-label/tco-white-label.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-white-label.zip\";s:5:\"title\";s:11:\"White Label\";s:11:\"description\";s:128:\"Customize the WordPress login to suit your needs. Create a branded experience for your clients or company with White&nbsp;Label.\";s:3:\"hex\";s:7:\"#cbcbcb\";s:3:\"rgb\";s:13:\"203, 203, 203\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/x-white-label.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:34:\"https://demo.theme.co/white-label/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:413:\"Whether you do a lot of client work or simply like tweaking various details of your project, the White Label Extension is for you. Quickly swap out the WordPress logo on your login page with any custom image, instantly making your site feel more personal and branded to you.\n\n![modfig|White Label 2](https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/assets/extensions/white_label/01.png)\n\";}}','off'),
(340,'themeco_update_cache','a:2:{s:6:\"themes\";a:1:{s:3:\"pro\";a:8:{s:5:\"theme\";s:3:\"pro\";s:11:\"new_version\";s:6:\"6.5.11\";s:12:\"release_date\";s:17:\"November 18, 2024\";s:3:\"url\";s:21:\"https://theme.co/pro/\";s:7:\"package\";s:94:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/pro_package/pro.zip\";s:14:\"stable_version\";s:6:\"6.4.22\";s:14:\"stable_package\";s:89:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/stable/pro.zip\";s:6:\"legacy\";a:2:{s:7:\"version\";s:5:\"5.1.5\";s:7:\"package\";s:89:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/legacy/pro.zip\";}}}s:7:\"plugins\";a:29:{s:27:\"cornerstone/cornerstone.php\";a:11:{s:4:\"slug\";s:11:\"cornerstone\";s:6:\"plugin\";s:27:\"cornerstone/cornerstone.php\";s:11:\"new_version\";s:6:\"7.5.11\";s:12:\"release_date\";s:17:\"November 18, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:110:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/cornerstone_package/cornerstone.zip\";s:14:\"stable_version\";s:6:\"7.4.22\";s:14:\"stable_package\";s:97:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/stable/cornerstone.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";s:6:\"legacy\";a:2:{s:7:\"version\";s:5:\"6.1.4\";s:7:\"package\";s:97:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/legacy/cornerstone.zip\";}}s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:7:\"acf-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\" 6.3.11\";s:12:\"release_date\";s:17:\"November 17, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:126:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/advanced-custom-fields-pro.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:27:\"convertplug/convertplug.php\";a:8:{s:4:\"slug\";s:11:\"convertplug\";s:6:\"plugin\";s:27:\"convertplug/convertplug.php\";s:11:\"new_version\";s:6:\"3.5.29\";s:12:\"release_date\";s:17:\"November 17, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/convertplug.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:38:\"WP_Estimation_Form/estimation-form.php\";a:8:{s:4:\"slug\";s:41:\"cost-estimation-and-payment-forms-builder\";s:6:\"plugin\";s:38:\"WP_Estimation_Form/estimation-form.php\";s:11:\"new_version\";s:7:\"10.1.92\";s:12:\"release_date\";s:17:\"November 10, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:118:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/WP_Estimation_Form.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.0\";}s:33:\"envira-gallery/envira-gallery.php\";a:8:{s:4:\"slug\";s:14:\"envira-gallery\";s:6:\"plugin\";s:33:\"envira-gallery/envira-gallery.php\";s:11:\"new_version\";s:6:\"1.10.0\";s:12:\"release_date\";s:17:\"November 10, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/envira-gallery.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.0\";}s:33:\"essential-grid/essential-grid.php\";a:8:{s:4:\"slug\";s:14:\"essential-grid\";s:6:\"plugin\";s:33:\"essential-grid/essential-grid.php\";s:11:\"new_version\";s:5:\"3.1.5\";s:12:\"release_date\";s:16:\"October 30, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/essential-grid.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:27:\"js_composer/js_composer.php\";a:8:{s:4:\"slug\";s:11:\"js_composer\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:11:\"new_version\";s:1:\"8\";s:12:\"release_date\";s:17:\"November 17, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/js_composer.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:27:\"LayerSlider/layerslider.php\";a:8:{s:4:\"slug\";s:11:\"layerslider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:11:\"new_version\";s:6:\"7.11.1\";s:12:\"release_date\";s:15:\"August 29, 2023\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:111:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/LayerSlider.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:30:\"modern-events-calendar/mec.php\";a:8:{s:4:\"slug\";s:22:\"modern-events-calendar\";s:6:\"plugin\";s:30:\"modern-events-calendar/mec.php\";s:11:\"new_version\";s:6:\"7.17.0\";s:12:\"release_date\";s:17:\"November 25, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/modern-events-calendar.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:23:\"revslider/revslider.php\";a:8:{s:4:\"slug\";s:9:\"revslider\";s:6:\"plugin\";s:23:\"revslider/revslider.php\";s:11:\"new_version\";s:6:\"6.7.23\";s:12:\"release_date\";s:17:\"November 25, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/revslider.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:22:\"superfly-menu/main.php\";a:8:{s:4:\"slug\";s:13:\"superfly-menu\";s:6:\"plugin\";s:22:\"superfly-menu/main.php\";s:11:\"new_version\";s:6:\"5.0.30\";s:12:\"release_date\";s:16:\"October 30, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:113:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/superfly-menu.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:23:\"soliloquy/soliloquy.php\";a:8:{s:4:\"slug\";s:9:\"soliloquy\";s:6:\"plugin\";s:23:\"soliloquy/soliloquy.php\";s:11:\"new_version\";s:6:\"2.6.12\";s:12:\"release_date\";s:17:\"November 10, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:109:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/soliloquy.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:21:\"the-grid/the-grid.php\";a:8:{s:4:\"slug\";s:8:\"the-grid\";s:6:\"plugin\";s:21:\"the-grid/the-grid.php\";s:11:\"new_version\";s:7:\"2.7.9.1\";s:12:\"release_date\";s:15:\"Februry 9, 2020\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/the-grid.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:21:\"ubermenu/ubermenu.php\";a:8:{s:4:\"slug\";s:8:\"ubermenu\";s:6:\"plugin\";s:21:\"ubermenu/ubermenu.php\";s:11:\"new_version\";s:5:\"3.8.5\";s:12:\"release_date\";s:16:\"October 30, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:108:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/ubermenu.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:37:\"tco-content-dock/tco-content-dock.php\";a:8:{s:4:\"slug\";s:16:\"tco-content-dock\";s:6:\"plugin\";s:37:\"tco-content-dock/tco-content-dock.php\";s:11:\"new_version\";s:6:\"2.0.10\";s:12:\"release_date\";s:13:\"July 29, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-content-dock.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:33:\"tco-custom-404/tco-custom-404.php\";a:8:{s:4:\"slug\";s:14:\"tco-custom-404\";s:6:\"plugin\";s:33:\"tco-custom-404/tco-custom-404.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:12:\"release_date\";s:14:\"March 20, 2023\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-custom-404.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:43:\"tco-disqus-comments/tco-disqus-comments.php\";a:8:{s:4:\"slug\";s:19:\"tco-disqus-comments\";s:6:\"plugin\";s:43:\"tco-disqus-comments/tco-disqus-comments.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:12:\"release_date\";s:17:\"February 28, 2020\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:119:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-disqus-comments.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:35:\"tco-email-forms/tco-email-forms.php\";a:8:{s:4:\"slug\";s:15:\"tco-email-forms\";s:6:\"plugin\";s:35:\"tco-email-forms/tco-email-forms.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:12:\"release_date\";s:13:\"March 1, 2023\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-email-forms.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:47:\"tco-facebook-comments/tco-facebook-comments.php\";a:8:{s:4:\"slug\";s:21:\"tco-facebook-comments\";s:6:\"plugin\";s:47:\"tco-facebook-comments/tco-facebook-comments.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:12:\"release_date\";s:17:\"February 28, 2020\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-facebook-comments.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:45:\"tco-google-analytics/tco-google-analytics.php\";a:8:{s:4:\"slug\";s:20:\"tco-google-analytics\";s:6:\"plugin\";s:45:\"tco-google-analytics/tco-google-analytics.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:12:\"release_date\";s:18:\"September 13, 2023\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:120:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-google-analytics.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:47:\"tco-olark-integration/tco-olark-integration.php\";a:8:{s:4:\"slug\";s:21:\"tco-olark-integration\";s:6:\"plugin\";s:47:\"tco-olark-integration/tco-olark-integration.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:12:\"release_date\";s:17:\"February 28, 2020\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:121:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-olark-integration.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";a:8:{s:4:\"slug\";s:17:\"tco-smooth-scroll\";s:6:\"plugin\";s:39:\"tco-smooth-scroll/tco-smooth-scroll.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:12:\"release_date\";s:17:\"February 28, 2020\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:117:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-smooth-scroll.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:19:\"snippet/snippet.php\";a:8:{s:4:\"slug\";s:7:\"snippet\";s:6:\"plugin\";s:19:\"snippet/snippet.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:12:\"release_date\";s:15:\"August 06, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:107:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/snippet.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:37:\"tco-terms-of-use/tco-terms-of-use.php\";a:8:{s:4:\"slug\";s:16:\"tco-terms-of-use\";s:6:\"plugin\";s:37:\"tco-terms-of-use/tco-terms-of-use.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:12:\"release_date\";s:16:\"October 18, 2017\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:116:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-terms-of-use.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:49:\"tco-under-construction/tco-under-construction.php\";a:8:{s:4:\"slug\";s:22:\"tco-under-construction\";s:6:\"plugin\";s:49:\"tco-under-construction/tco-under-construction.php\";s:11:\"new_version\";s:6:\"2.1.10\";s:12:\"release_date\";s:16:\"October 10, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:122:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-under-construction.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:33:\"tco-video-lock/tco-video-lock.php\";a:8:{s:4:\"slug\";s:14:\"tco-video-lock\";s:6:\"plugin\";s:33:\"tco-video-lock/tco-video-lock.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:12:\"release_date\";s:17:\"December 30, 2022\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:114:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-video-lock.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";a:8:{s:4:\"slug\";s:23:\"tco-woo-checkout-editor\";s:6:\"plugin\";s:52:\"tco-woo-checkout-editor/tco_woo_checkout_manager.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:12:\"release_date\";s:16:\"November 6, 2023\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:123:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-woo-checkout-editor.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:35:\"tco-white-label/tco-white-label.php\";a:8:{s:4:\"slug\";s:15:\"tco-white-label\";s:6:\"plugin\";s:35:\"tco-white-label/tco-white-label.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:12:\"release_date\";s:13:\"July 29, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:7:\"package\";s:115:\"https://themeco-packages.s3.amazonaws.com/d940c8c440f230138995a40c4daf0904/x_package/extensions/tco-white-label.zip\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:6:\"tested\";s:3:\"5.8\";}s:41:\"cornerstone-charts/cornerstone-charts.php\";a:21:{s:4:\"slug\";s:18:\"cornerstone-charts\";s:6:\"plugin\";s:41:\"cornerstone-charts/cornerstone-charts.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:12:\"release_date\";s:16:\"October 08, 2024\";s:3:\"url\";s:39:\"https://theme.co/changelog/?iframe=true\";s:14:\"upgrade_notice\";s:16:\"Update Available\";s:11:\"external_id\";s:2:\"12\";s:6:\"tested\";s:3:\"6.2\";s:11:\"x-extension\";a:10:{s:5:\"title\";s:18:\"Cornerstone Charts\";s:11:\"description\";s:29:\"Visualize your data with ease\";s:3:\"hex\";s:7:\"#00FF00\";s:3:\"rgb\";s:9:\"0, 255, 0\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:86:\"https://max.theme.co/pluginfile.php/236/course/overviewfiles/max-cornerstonecharts.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:36:\"https://theme.co/cornerstone-charts/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:73:\"Meet the ultimate data visualization tool for WordPress and Cornerstone.\n\";}s:5:\"title\";s:18:\"Cornerstone Charts\";s:11:\"description\";s:29:\"Visualize your data with ease\";s:3:\"hex\";s:7:\"#00FF00\";s:3:\"rgb\";s:9:\"0, 255, 0\";s:9:\"exclusive\";b:1;s:8:\"logo_url\";s:86:\"https://max.theme.co/pluginfile.php/236/course/overviewfiles/max-cornerstonecharts.png\";s:6:\"author\";s:7:\"Themeco\";s:8:\"demo_url\";s:36:\"https://theme.co/cornerstone-charts/\";s:6:\"status\";s:6:\"public\";s:16:\"description_long\";s:73:\"Meet the ultimate data visualization tool for WordPress and Cornerstone.\n\";s:9:\"installed\";b:0;s:9:\"activated\";b:0;}}}','off'),
(348,'cs_last_save','2024-11-27 14:48:23','auto'),
(400,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:28:\"theparisianhostess@gmail.com\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1732233445;}','off'),
(473,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1732761025','off'),
(474,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1732717825','off'),
(477,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1732761025','off'),
(478,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1732717825','off'),
(517,'x_stack','integrity','auto'),
(518,'x_integrity_design','light','auto'),
(519,'x_integrity_topbar_transparency_enable','','auto'),
(520,'x_integrity_navbar_transparency_enable','','auto'),
(521,'x_integrity_footer_transparency_enable','','auto'),
(522,'x_integrity_blog_header_enable','1','auto'),
(523,'x_integrity_blog_title','The Blog','auto'),
(524,'x_integrity_blog_subtitle','Welcome to our little corner of the Internet. Kick your feet up and stay a while.','auto'),
(525,'x_integrity_portfolio_archive_sort_button_text','Sort Portfolio','auto'),
(526,'x_integrity_portfolio_archive_post_sharing_enable','','auto'),
(527,'x_integrity_shop_header_enable','1','auto'),
(528,'x_integrity_shop_title','The Shop','auto'),
(529,'x_integrity_shop_subtitle','Welcome to our online store. Take some time to browse through our items.','auto'),
(530,'x_renew_topbar_background','#1f2c39','auto'),
(531,'x_renew_logobar_background','#2c3e50','auto'),
(532,'x_renew_navbar_background','#2c3e50','auto'),
(533,'x_renew_navbar_button_color','#ffffff','auto'),
(534,'x_renew_navbar_button_background','#3e5771','auto'),
(535,'x_renew_navbar_button_background_hover','#476481','auto'),
(536,'x_renew_footer_background','#2c3e50','auto'),
(537,'x_renew_topbar_text_color','#ffffff','auto'),
(538,'x_renew_topbar_link_color_hover','#959baf','auto'),
(539,'x_renew_footer_text_color','#ffffff','auto'),
(540,'x_renew_blog_title','The Blog','auto'),
(541,'x_renew_entry_icon_color','#dddddd','auto'),
(542,'x_renew_entry_icon_position','standard','auto'),
(543,'x_renew_entry_icon_position_horizontal','18%','auto'),
(544,'x_renew_entry_icon_position_vertical','25px','auto'),
(545,'x_renew_shop_title','The Shop','auto'),
(546,'x_icon_post_title_icon_enable','1','auto'),
(547,'x_icon_post_standard_colors_enable','','auto'),
(548,'x_icon_post_standard_color','#d1f2eb','auto'),
(549,'x_icon_post_standard_background','#16a085','auto'),
(550,'x_icon_post_image_colors_enable','','auto'),
(551,'x_icon_post_image_color','#d1eedd','auto'),
(552,'x_icon_post_image_background','#27ae60','auto'),
(553,'x_icon_post_gallery_colors_enable','','auto'),
(554,'x_icon_post_gallery_color','#d1eedd','auto'),
(555,'x_icon_post_gallery_background','#27ae60','auto'),
(556,'x_icon_post_video_colors_enable','','auto'),
(557,'x_icon_post_video_color','#e9daef','auto'),
(558,'x_icon_post_video_background','#8e44ad','auto'),
(559,'x_icon_post_audio_colors_enable','','auto'),
(560,'x_icon_post_audio_color','#cfd4d9','auto'),
(561,'x_icon_post_audio_background','#2c3e50','auto'),
(562,'x_icon_post_quote_colors_enable','','auto'),
(563,'x_icon_post_quote_color','#fcf2c8','auto'),
(564,'x_icon_post_quote_background','#f1c40f','auto'),
(565,'x_icon_post_link_colors_enable','','auto'),
(566,'x_icon_post_link_color','#f9d0cc','auto'),
(567,'x_icon_post_link_background','#c0392b','auto'),
(568,'x_icon_shop_title','The Shop','auto'),
(569,'x_ethos_topbar_background','#222222','auto'),
(570,'x_ethos_navbar_background','#333333','auto'),
(571,'x_ethos_sidebar_widget_headings_color','#333333','auto'),
(572,'x_ethos_sidebar_color','#333333','auto'),
(573,'x_ethos_post_carousel_enable','','auto'),
(574,'x_ethos_post_carousel_count','6','auto'),
(575,'x_ethos_post_carousel_display','most-commented','auto'),
(576,'x_ethos_post_carousel_display_count_extra_large','5','auto'),
(577,'x_ethos_post_carousel_display_count_large','4','auto'),
(578,'x_ethos_post_carousel_display_count_medium','3','auto'),
(579,'x_ethos_post_carousel_display_count_small','2','auto'),
(580,'x_ethos_post_carousel_display_count_extra_small','1','auto'),
(581,'x_ethos_post_slider_blog_enable','','auto'),
(582,'x_ethos_post_slider_blog_height','425px','auto'),
(583,'x_ethos_post_slider_blog_count','5','auto'),
(584,'x_ethos_post_slider_blog_display','most-commented','auto'),
(585,'x_ethos_post_slider_archive_enable','','auto'),
(586,'x_ethos_post_slider_archive_height','425px','auto'),
(587,'x_ethos_post_slider_archive_count','5','auto'),
(588,'x_ethos_post_slider_archive_display','most-commented','auto'),
(589,'x_ethos_filterable_index_enable','','auto'),
(590,'x_ethos_filterable_index_categories','','auto'),
(591,'x_ethos_shop_title','The Shop','auto'),
(592,'x_layout_site','full-width','auto'),
(593,'x_layout_site_max_width','1200px','auto'),
(594,'x_layout_site_width','88%','auto'),
(595,'x_layout_content','full-width','auto'),
(596,'x_layout_content_width','72%','auto'),
(597,'x_layout_sidebar_width','250','auto'),
(598,'x_design_bg_color','global-color:MqGYJUpXapYSDre2cf','auto'),
(599,'x_design_bg_image_pattern','','auto'),
(600,'x_design_bg_image_full','','auto'),
(601,'x_design_bg_image_full_fade','750','auto'),
(602,'x_root_font_size_mode','stepped','auto'),
(603,'x_root_font_size_stepped_unit','px','auto'),
(604,'x_root_font_size_stepped_xs','14','auto'),
(605,'x_root_font_size_stepped_sm','14','auto'),
(606,'x_root_font_size_stepped_md','14','auto'),
(607,'x_root_font_size_stepped_lg','14','auto'),
(608,'x_root_font_size_stepped_xl','14','auto'),
(609,'x_root_font_size_scaling_unit','px','auto'),
(610,'x_root_font_size_scaling_min','14','auto'),
(611,'x_root_font_size_scaling_max','14','auto'),
(612,'x_root_font_size_scaling_lower_limit','500','auto'),
(613,'x_root_font_size_scaling_upper_limit','1000','auto'),
(614,'x_google_fonts_subsets','','auto'),
(615,'x_google_fonts_subset_cyrillic','','auto'),
(616,'x_google_fonts_subset_greek','','auto'),
(617,'x_google_fonts_subset_vietnamese','','auto'),
(618,'x_body_font_family','Lato','auto'),
(619,'x_body_font_color','#999999','auto'),
(620,'x_content_font_size_rem','1rem','auto'),
(621,'x_body_font_weight','400','auto'),
(622,'x_headings_font_family','Lato','auto'),
(623,'x_headings_font_color','global-color:d5OcSiPv75yItABYW7','auto'),
(624,'x_headings_font_weight','700','auto'),
(625,'x_headings_font_is_italic','0','auto'),
(626,'x_h1_letter_spacing','-0.035em','auto'),
(627,'x_h2_letter_spacing','-0.035em','auto'),
(628,'x_h3_letter_spacing','-0.035em','auto'),
(629,'x_h4_letter_spacing','-0.035em','auto'),
(630,'x_h5_letter_spacing','-0.035em','auto'),
(631,'x_h6_letter_spacing','-0.035em','auto'),
(632,'x_headings_uppercase_enable','','auto'),
(633,'x_headings_widget_icons_enable','','auto'),
(634,'x_site_link_color','global-color:d5OcSiPv75yItABYW7','auto'),
(635,'x_site_link_color_hover','global-color:primary','auto'),
(636,'x_site_link_oembed','1','auto'),
(637,'x_site_link_oembed_own_site','1','auto'),
(638,'x_button_style','real','auto'),
(639,'x_button_shape','rounded','auto'),
(640,'x_button_size','regular','auto'),
(641,'x_button_color','#ffffff','auto'),
(642,'x_button_background_color','#ff2a13','auto'),
(643,'x_button_border_color','#ac1100','auto'),
(644,'x_button_bottom_color','#a71000','auto'),
(645,'x_button_color_hover','#ffffff','auto'),
(646,'x_button_background_color_hover','#ef2201','auto'),
(647,'x_button_border_color_hover','#600900','auto'),
(648,'x_button_bottom_color_hover','#a71000','auto'),
(649,'x_navbar_positioning','static-top','auto'),
(650,'x_logo_navigation_layout','inline','auto'),
(651,'x_logobar_adjust_spacing_top','15px','auto'),
(652,'x_logobar_adjust_spacing_bottom','15px','auto'),
(653,'x_navbar_subindicator_icon','angles-down','auto'),
(654,'x_navbar_height','90px','auto'),
(655,'x_navbar_width','235px','auto'),
(656,'x_logo_text','','auto'),
(657,'x_logo_font_family','Lato','auto'),
(658,'x_logo_font_color','#272727','auto'),
(659,'x_logo_font_size','42px','auto'),
(660,'x_logo_font_weight','700','auto'),
(661,'x_logo_letter_spacing','-0.035em','auto'),
(662,'x_logo_uppercase_enable','','auto'),
(663,'x_logo_visually_hidden_h1','','auto'),
(664,'x_logo','35:full','auto'),
(665,'x_logo_width','','auto'),
(666,'x_logo_adjust_navbar_top','22px','auto'),
(667,'x_logo_adjust_navbar_side','30px','auto'),
(668,'x_navbar_font_family','Lato','auto'),
(669,'x_navbar_link_color','#999999','auto'),
(670,'x_navbar_link_color_hover','#272727','auto'),
(671,'x_navbar_font_size','13px','auto'),
(672,'x_navbar_font_weight','700','auto'),
(673,'x_navbar_letter_spacing','0.085em','auto'),
(674,'x_navbar_uppercase_enable','1','auto'),
(675,'x_navbar_adjust_links_top','37px','auto'),
(676,'x_navbar_adjust_links_side','50px','auto'),
(677,'x_navbar_adjust_links_top_spacing','20px','auto'),
(678,'x_header_search_enable','','auto'),
(679,'x_navbar_adjust_button_size','24px','auto'),
(680,'x_navbar_adjust_button','20px','auto'),
(681,'x_header_widget_areas','2','auto'),
(682,'x_widgetbar_button_background','#000000','auto'),
(683,'x_widgetbar_button_background_hover','#444444','auto'),
(684,'x_topbar_display','','auto'),
(685,'x_topbar_content','','auto'),
(686,'x_breadcrumb_display','1','auto'),
(687,'x_footer_widget_areas','3','auto'),
(688,'x_footer_bottom_display','1','auto'),
(689,'x_footer_menu_display','1','auto'),
(690,'x_footer_social_display','1','auto'),
(691,'x_footer_content_display','1','auto'),
(692,'x_footer_content','','auto'),
(693,'x_footer_scroll_top_display','','auto'),
(694,'x_footer_scroll_top_position','right','auto'),
(695,'x_footer_scroll_top_display_unit','75%','auto'),
(696,'x_blog_style','masonry','auto'),
(697,'x_blog_layout','full-width','auto'),
(698,'x_blog_masonry_columns','3','auto'),
(699,'x_archive_style','masonry','auto'),
(700,'x_archive_layout','full-width','auto'),
(701,'x_archive_masonry_columns','3','auto'),
(702,'x_blog_enable_post_meta','','auto'),
(703,'x_blog_enable_full_post_content','','auto'),
(704,'x_blog_excerpt_length','60','auto'),
(705,'x_portfolio_enable','1','auto'),
(706,'x_custom_portfolio_slug','portfolio-item','auto'),
(707,'x_portfolio_enable_cropped_thumbs','','auto'),
(708,'x_portfolio_enable_post_meta','1','auto'),
(709,'x_portfolio_tag_title','Skills','auto'),
(710,'x_portfolio_launch_project_title','Launch Project','auto'),
(711,'x_portfolio_launch_project_button_text','See it Live!','auto'),
(712,'x_portfolio_share_project_title','Share this Project','auto'),
(713,'x_portfolio_enable_social','1','auto'),
(714,'x_portfolio_enable_facebook_sharing','1','auto'),
(715,'x_portfolio_enable_twitter_sharing','1','auto'),
(716,'x_portfolio_enable_linkedin_sharing','','auto'),
(717,'x_portfolio_enable_pinterest_sharing','','auto'),
(718,'x_portfolio_enable_reddit_sharing','','auto'),
(719,'x_portfolio_enable_email_sharing','','auto'),
(720,'x_bbpress_enable_templates','1','auto'),
(721,'x_bbpress_layout_content','sidebar','auto'),
(722,'x_bbpress_enable_quicktags','','auto'),
(723,'x_bbpress_header_menu_enable','','auto'),
(724,'x_buddypress_enable','1','auto'),
(725,'x_buddypress_templates_enable','1','auto'),
(726,'x_buddypress_layout_content','sidebar','auto'),
(727,'x_buddypress_header_menu_enable','','auto'),
(728,'x_buddypress_activity_title','Activity','auto'),
(729,'x_buddypress_groups_title','Groups','auto'),
(730,'x_buddypress_blogs_title','Sites','auto'),
(731,'x_buddypress_members_title','Members','auto'),
(732,'x_buddypress_register_title','Create An Account','auto'),
(733,'x_buddypress_activate_title','Activate Your Account','auto'),
(734,'x_buddypress_activity_subtitle','Meet new people, get involved, and stay connected.','auto'),
(735,'x_buddypress_groups_subtitle','Find others with similar interests and get plugged in.','auto'),
(736,'x_buddypress_blogs_subtitle','See what others are writing about. Learn something new and exciting today!','auto'),
(737,'x_buddypress_members_subtitle','Meet your new online community. Kick up your feet and stay awhile.','auto'),
(738,'x_buddypress_register_subtitle','Just fill in the fields below and we\'ll get a new account set up for you in no time!','auto'),
(739,'x_buddypress_activate_subtitle','You\'re almost there! Simply enter your activation code below and we\'ll take care of the rest.','auto'),
(740,'x_woocommerce_header_menu_enable','','auto'),
(741,'x_woocommerce_header_hide_empty_cart','','auto'),
(742,'x_woocommerce_header_cart_info','outer-inner','auto'),
(743,'x_woocommerce_header_cart_style','square','auto'),
(744,'x_woocommerce_header_cart_layout','inline','auto'),
(745,'x_woocommerce_header_cart_adjust','30px','auto'),
(746,'x_woocommerce_header_cart_content_inner','count','auto'),
(747,'x_woocommerce_header_cart_content_outer','total','auto'),
(748,'x_woocommerce_header_cart_content_inner_color','#ffffff','auto'),
(749,'x_woocommerce_header_cart_content_inner_color_hover','#ffffff','auto'),
(750,'x_woocommerce_header_cart_content_outer_color','#b7b7b7','auto'),
(751,'x_woocommerce_header_cart_content_outer_color_hover','#272727','auto'),
(752,'x_woocommerce_shop_layout_content','sidebar','auto'),
(753,'x_woocommerce_shop_columns','3','auto'),
(754,'x_woocommerce_shop_count','12','auto'),
(755,'x_woocommerce_shop_placeholder_thumbnail','','auto'),
(756,'x_woocommerce_product_tabs_enable','1','auto'),
(757,'x_woocommerce_product_tab_description_enable','1','auto'),
(758,'x_woocommerce_product_tab_additional_info_enable','1','auto'),
(759,'x_woocommerce_product_tab_reviews_enable','1','auto'),
(760,'x_woocommerce_product_related_enable','1','auto'),
(761,'x_woocommerce_product_related_columns','4','auto'),
(762,'x_woocommerce_product_related_count','4','auto'),
(763,'x_woocommerce_product_upsells_enable','1','auto'),
(764,'x_woocommerce_product_upsell_columns','4','auto'),
(765,'x_woocommerce_product_upsell_count','4','auto'),
(766,'x_woocommerce_cart_cross_sells_enable','1','auto'),
(767,'x_woocommerce_cart_cross_sells_columns','4','auto'),
(768,'x_woocommerce_cart_cross_sells_count','4','auto'),
(769,'x_woocommerce_ajax_add_to_cart_color','#545454','auto'),
(770,'x_woocommerce_ajax_add_to_cart_bg_color','#000000','auto'),
(771,'x_woocommerce_ajax_add_to_cart_color_hover','#ffffff','auto'),
(772,'x_woocommerce_ajax_add_to_cart_bg_color_hover','#46a546','auto'),
(773,'x_woocommerce_widgets_image_alignment','left','auto'),
(774,'x_social_facebook','','auto'),
(775,'x_social_twitter','','auto'),
(776,'x_social_linkedin','','auto'),
(777,'x_social_xing','','auto'),
(778,'x_social_foursquare','','auto'),
(779,'x_social_youtube','','auto'),
(780,'x_social_vimeo','','auto'),
(781,'x_social_instagram','','auto'),
(782,'x_social_pinterest','','auto'),
(783,'x_social_dribbble','','auto'),
(784,'x_social_flickr','','auto'),
(785,'x_social_github','','auto'),
(786,'x_social_behance','','auto'),
(787,'x_social_tumblr','','auto'),
(788,'x_social_whatsapp','','auto'),
(789,'x_social_soundcloud','','auto'),
(790,'x_social_rss','','auto'),
(791,'x_social_open_graph','','auto'),
(792,'x_social_fallback_image','','auto'),
(793,'x_custom_styles','','auto'),
(794,'x_custom_scripts','','auto'),
(795,'x_fixed_menu_scroll','overflow-visible','auto'),
(796,'x_enable_font_manager','1','auto'),
(797,'x_body_font_family_selection','system:helveticaneue','auto'),
(798,'x_body_font_weight_selection','fw-normal','auto'),
(799,'x_headings_font_family_selection','system:helveticaneue','auto'),
(800,'x_headings_font_weight_selection','fw-bold','auto'),
(801,'x_logo_font_family_selection','system:helveticaneue','auto'),
(802,'x_logo_font_weight_selection','fw-bold','auto'),
(803,'x_navbar_font_family_selection','system:helveticaneue','auto'),
(804,'x_navbar_font_weight_selection','fw-bold','auto'),
(805,'x_body_font_italic','','auto'),
(806,'x_headings_font_italic','','auto'),
(807,'x_logo_font_italic','','auto'),
(808,'x_navbar_font_italic','','auto'),
(809,'x_font_awesome_icon_type','webfont','auto'),
(810,'x_font_awesome_load_types_for_elements','','auto'),
(811,'x_font_awesome_shim_enable','1','auto'),
(812,'x_font_awesome_solid_enable','1','auto'),
(813,'x_font_awesome_regular_enable','1','auto'),
(814,'x_font_awesome_light_enable','1','auto'),
(815,'x_font_awesome_brands_enable','1','auto'),
(816,'x_font_awesome_sharp-light_enable','','auto'),
(817,'x_font_awesome_sharp-regular_enable','','auto'),
(818,'x_font_awesome_sharp-solid_enable','','auto'),
(819,'x_breakpoint_base','4','auto'),
(820,'x_breakpoint_ranges','a:4:{i:0;i:480;i:1;i:767;i:2;i:979;i:3;i:1200;}','auto'),
(821,'cs_global_parameter_json','','auto'),
(822,'cs_global_parameter_data','','auto'),
(858,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','off'),
(926,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1733175483','off'),
(927,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),
(940,'_site_transient_timeout_browser_a455ebc67d0b5007e2a055414dd14d78','1733177862','off'),
(941,'_site_transient_browser_a455ebc67d0b5007e2a055414dd14d78','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"130.0.0.0\";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;}','off'),
(946,'wp_calendar_block_has_published_posts','1','auto'),
(998,'category_children','a:0:{}','auto'),
(1084,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732716642;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{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:\"5.3.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:20:\"cornerstone/main.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/cornerstone\";s:4:\"slug\";s:11:\"cornerstone\";s:6:\"plugin\";s:20:\"cornerstone/main.php\";s:11:\"new_version\";s:5:\"0.8.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/cornerstone/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/cornerstone.0.8.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:55:\"https://s.w.org/plugins/geopattern-icon/cornerstone.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:3:{s:19:\"akismet/akismet.php\";s:5:\"5.3.5\";s:20:\"cornerstone/main.php\";s:5:\"0.8.1\";s:9:\"hello.php\";s:5:\"1.7.2\";}}','off'),
(1086,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732716642;s:7:\"checked\";a:4:{s:3:\"pro\";s:6:\"6.5.11\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','off'),
(1091,'_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-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1732716642;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),
(1093,'cs_component_cache','[[],[],[],[]]','auto'),
(1113,'cs_assignment_cache_layout_single','a:0:{}','auto'),
(1114,'cs_assignment_cache_layout_header','a:1:{i:0;a:4:{s:2:\"id\";i:20;s:5:\"title\";s:6:\"Header\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"group\";b:1;s:9:\"condition\";s:16:\"site:entire-site\";s:5:\"value\";s:0:\"\";}}s:8:\"priority\";i:0;}}','auto'),
(1115,'cs_assignment_cache_layout_footer','a:1:{i:0;a:4:{s:2:\"id\";i:153;s:5:\"title\";s:6:\"Footer\";s:5:\"rules\";a:1:{i:0;a:3:{s:5:\"group\";b:1;s:9:\"condition\";s:16:\"site:entire-site\";s:5:\"value\";s:0:\"\";}}s:8:\"priority\";i:0;}}','auto'),
(1121,'cs_assignment_cache_layout_archive','a:0:{}','auto'),
(1136,'_site_transient_timeout_cs_remote_asset_data_e72ba15663603a1bbac4629f744911ff_legacyManifest','1732725728','off'),
(1137,'_site_transient_cs_remote_asset_data_e72ba15663603a1bbac4629f744911ff_legacyManifest','a:41:{i:0;a:8:{s:2:\"id\";s:10:\"legacy:457\";s:5:\"title\";s:6:\"Church\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:76:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc.jpg\";s:8:\"demo_url\";s:29:\"https://demo.theme.co/church/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/457\";}i:1;a:8:{s:2:\"id\";s:10:\"legacy:460\";s:5:\"title\";s:10:\"Restaurant\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-1.jpg\";s:8:\"demo_url\";s:33:\"https://demo.theme.co/restaurant/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/460\";}i:2;a:8:{s:2:\"id\";s:10:\"legacy:463\";s:5:\"title\";s:6:\"Agency\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-2.jpg\";s:8:\"demo_url\";s:29:\"https://demo.theme.co/agency/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/463\";}i:3;a:8:{s:2:\"id\";s:10:\"legacy:466\";s:5:\"title\";s:3:\"Spa\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-3.jpg\";s:8:\"demo_url\";s:26:\"https://demo.theme.co/spa/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/466\";}i:4;a:8:{s:2:\"id\";s:10:\"legacy:468\";s:5:\"title\";s:9:\"Education\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-4.jpg\";s:8:\"demo_url\";s:32:\"https://demo.theme.co/education/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/468\";}i:5;a:8:{s:2:\"id\";s:10:\"legacy:471\";s:5:\"title\";s:4:\"Band\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-5.jpg\";s:8:\"demo_url\";s:27:\"https://demo.theme.co/band/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/471\";}i:6;a:8:{s:2:\"id\";s:10:\"legacy:473\";s:5:\"title\";s:7:\"Wedding\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-6.jpg\";s:8:\"demo_url\";s:30:\"https://demo.theme.co/wedding/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/473\";}i:7;a:8:{s:2:\"id\";s:10:\"legacy:476\";s:5:\"title\";s:10:\"Food Truck\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-7.jpg\";s:8:\"demo_url\";s:33:\"https://demo.theme.co/food-truck/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/476\";}i:8;a:8:{s:2:\"id\";s:10:\"legacy:479\";s:5:\"title\";s:3:\"Gym\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-8.jpg\";s:8:\"demo_url\";s:26:\"https://demo.theme.co/gym/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/479\";}i:9;a:8:{s:2:\"id\";s:10:\"legacy:483\";s:5:\"title\";s:3:\"App\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-9.jpg\";s:8:\"demo_url\";s:26:\"https://demo.theme.co/app/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/483\";}i:10;a:8:{s:2:\"id\";s:10:\"legacy:487\";s:5:\"title\";s:4:\"Auto\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-10.jpg\";s:8:\"demo_url\";s:27:\"https://demo.theme.co/auto/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/487\";}i:11;a:8:{s:2:\"id\";s:10:\"legacy:490\";s:5:\"title\";s:9:\"Nonprofit\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-11.jpg\";s:8:\"demo_url\";s:32:\"https://demo.theme.co/nonprofit/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/490\";}i:12;a:8:{s:2:\"id\";s:10:\"legacy:493\";s:5:\"title\";s:17:\"Bed And Breakfast\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-12.jpg\";s:8:\"demo_url\";s:40:\"https://demo.theme.co/bed-and-breakfast/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/493\";}i:13;a:8:{s:2:\"id\";s:10:\"legacy:496\";s:5:\"title\";s:6:\"Lawyer\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-50.jpg\";s:8:\"demo_url\";s:29:\"https://demo.theme.co/lawyer/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/496\";}i:14;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/500\";s:5:\"title\";s:12:\"Statbar Pack\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-14.jpg\";s:8:\"demo_url\";s:48:\"https://demo.theme.co/designcloud/packs/statbars\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/500\";s:7:\"subType\";s:9:\"__multi__\";}i:15;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/503\";s:5:\"title\";s:9:\"Flat Pack\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-15.jpg\";s:8:\"demo_url\";s:44:\"https://demo.theme.co/designcloud/packs/flat\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/503\";s:7:\"subType\";s:9:\"__multi__\";}i:16;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/506\";s:5:\"title\";s:12:\"Minimal Pack\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-16.jpg\";s:8:\"demo_url\";s:47:\"https://demo.theme.co/designcloud/packs/minimal\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/506\";s:7:\"subType\";s:9:\"__multi__\";}i:17;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/509\";s:5:\"title\";s:12:\"Organic Pack\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-17.jpg\";s:8:\"demo_url\";s:47:\"https://demo.theme.co/designcloud/packs/organic\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/509\";s:7:\"subType\";s:9:\"__multi__\";}i:18;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/561\";s:5:\"title\";s:15:\"Text: Columnize\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-34.jpg\";s:8:\"demo_url\";s:56:\"https://demo.theme.co/designcloud/presets/text-columnize\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/561\";s:7:\"subType\";s:9:\"__multi__\";}i:19;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/564\";s:5:\"title\";s:18:\"Quote: Testimonial\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-35.jpg\";s:8:\"demo_url\";s:59:\"https://demo.theme.co/designcloud/presets/quote-testimonial\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/564\";s:7:\"subType\";s:9:\"__multi__\";}i:20;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/567\";s:5:\"title\";s:17:\"Quote: Side Image\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-36.jpg\";s:8:\"demo_url\";s:58:\"https://demo.theme.co/designcloud/presets/quote-side-image\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/567\";s:7:\"subType\";s:9:\"__multi__\";}i:21;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/570\";s:5:\"title\";s:20:\"Button: Fully Loaded\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-37.jpg\";s:8:\"demo_url\";s:61:\"https://demo.theme.co/designcloud/presets/button-fully-loaded\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/570\";s:7:\"subType\";s:9:\"__multi__\";}i:22;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/573\";s:5:\"title\";s:21:\"Button: Particle Skew\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-38.jpg\";s:8:\"demo_url\";s:62:\"https://demo.theme.co/designcloud/presets/button-particle-skew\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/573\";s:7:\"subType\";s:9:\"__multi__\";}i:23;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/576\";s:5:\"title\";s:21:\"Headline: Feature Box\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-39.jpg\";s:8:\"demo_url\";s:62:\"https://demo.theme.co/designcloud/presets/headline-feature-box\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/576\";s:7:\"subType\";s:9:\"__multi__\";}i:24;a:9:{s:2:\"id\";s:75:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/606\";s:5:\"title\";s:14:\"Tabs: Vertical\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/11/dc-49.jpg\";s:8:\"demo_url\";s:56:\"https://demo.theme.co/designcloud/presets/tabs-vertical/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/606\";s:7:\"subType\";s:9:\"__multi__\";}i:25;a:8:{s:2:\"id\";s:10:\"legacy:695\";s:5:\"title\";s:18:\"Integrity Business\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:76:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc.jpg\";s:8:\"demo_url\";s:40:\"http://demo.theme.co/integrity-business/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/695\";}i:26;a:8:{s:2:\"id\";s:10:\"legacy:697\";s:5:\"title\";s:14:\"Renew Creative\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-1.jpg\";s:8:\"demo_url\";s:36:\"http://demo.theme.co/renew-creative/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/697\";}i:27;a:8:{s:2:\"id\";s:10:\"legacy:699\";s:5:\"title\";s:15:\"Integrity Bands\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-2.jpg\";s:8:\"demo_url\";s:37:\"http://demo.theme.co/integrity-bands/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/699\";}i:28;a:8:{s:2:\"id\";s:10:\"legacy:701\";s:5:\"title\";s:11:\"Icon Simple\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-3.jpg\";s:8:\"demo_url\";s:33:\"http://demo.theme.co/icon-simple/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/701\";}i:29;a:8:{s:2:\"id\";s:10:\"legacy:703\";s:5:\"title\";s:14:\"Ethos Magazine\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-4.jpg\";s:8:\"demo_url\";s:36:\"http://demo.theme.co/ethos-magazine/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/703\";}i:30;a:8:{s:2:\"id\";s:10:\"legacy:705\";s:5:\"title\";s:14:\"Renew Business\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-5.jpg\";s:8:\"demo_url\";s:36:\"http://demo.theme.co/renew-business/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/705\";}i:31;a:8:{s:2:\"id\";s:10:\"legacy:707\";s:5:\"title\";s:12:\"Renew Agency\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-6.jpg\";s:8:\"demo_url\";s:34:\"http://demo.theme.co/renew-agency/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/707\";}i:32;a:8:{s:2:\"id\";s:10:\"legacy:709\";s:5:\"title\";s:12:\"Renew Lander\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-7.jpg\";s:8:\"demo_url\";s:34:\"http://demo.theme.co/renew-lander/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/709\";}i:33;a:8:{s:2:\"id\";s:10:\"legacy:711\";s:5:\"title\";s:11:\"Renew Bands\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-8.jpg\";s:8:\"demo_url\";s:33:\"http://demo.theme.co/renew-bands/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/711\";}i:34;a:8:{s:2:\"id\";s:10:\"legacy:713\";s:5:\"title\";s:9:\"Icon News\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-9.jpg\";s:8:\"demo_url\";s:31:\"http://demo.theme.co/icon-news/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/713\";}i:35;a:8:{s:2:\"id\";s:10:\"legacy:715\";s:5:\"title\";s:13:\"Icon Business\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-10.jpg\";s:8:\"demo_url\";s:35:\"http://demo.theme.co/icon-business/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/715\";}i:36;a:8:{s:2:\"id\";s:10:\"legacy:717\";s:5:\"title\";s:14:\"Ethos Business\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-11.jpg\";s:8:\"demo_url\";s:36:\"http://demo.theme.co/ethos-business/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/717\";}i:37;a:8:{s:2:\"id\";s:10:\"legacy:719\";s:5:\"title\";s:17:\"Ethos Photography\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:79:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2019/12/dc-12.jpg\";s:8:\"demo_url\";s:39:\"http://demo.theme.co/ethos-photography/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/719\";}i:38;a:8:{s:2:\"id\";s:10:\"legacy:908\";s:5:\"title\";s:6:\"Crafty\";s:4:\"type\";s:4:\"site\";s:8:\"groupKey\";s:4:\"site\";s:7:\"preview\";s:76:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2020/04/dc.jpg\";s:8:\"demo_url\";s:29:\"https://demo.theme.co/crafty/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:67:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/908\";}i:39;a:9:{s:2:\"id\";s:76:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/1143\";s:5:\"title\";s:13:\"Standard Pack\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2020/12/dc-4.jpg\";s:8:\"demo_url\";s:49:\"https://demo.theme.co/designcloud/packs/standard/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:68:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/1143\";s:7:\"subType\";s:9:\"__multi__\";}i:40;a:9:{s:2:\"id\";s:76:\"cs-pack:https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/1419\";s:5:\"title\";s:22:\"Dropdown: Mega Contact\";s:4:\"type\";s:4:\"pack\";s:8:\"groupKey\";s:4:\"pack\";s:7:\"preview\";s:78:\"https://demo.theme.co/designcloud/wp-content/uploads/sites/83/2021/04/dc-1.jpg\";s:8:\"demo_url\";s:64:\"https://demo.theme.co/designcloud/presets/dropdown-mega-contact/\";s:8:\"isRemote\";b:1;s:16:\"legacyInstallUrl\";s:68:\"https://demo.theme.co/designcloud/wp-json/design-cloud/v3/asset/1419\";s:7:\"subType\";s:9:\"__multi__\";}}','off'),
(1139,'_site_transient_timeout_community-events-ee71cdca67aefa04f6519c82e6aca471','1732761024','off'),
(1140,'_site_transient_community-events-ee71cdca67aefa04f6519c82e6aca471','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"73.0.249.0\";}s:6:\"events\";a:0:{}}','off'),
(1141,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1732761025','off'),
(1142,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:6:{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:52:\"\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:8:{s:5:\"title\";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: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:59:\"The latest news about WordPress and the WordPress community\";s: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:\"Wed, 27 Nov 2024 01:48: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:\"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=6.8-alpha-59465\";s: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:\"image\";a:1:{i:0;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:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?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:5:\"title\";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: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:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s: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:35:\"WordPress 6.7.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/11/wordpress-6-7-1-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, 21 Nov 2024 14:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18096\";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:349:\"WordPress 6.7.1 is now available! This minor release features 16 bug fixes throughout Core and the Block Editor. WordPress 6.7.1 is a fast-follow release with a strict focus on bugs introduced in WordPress 6.7. The next major release will be version 6.8, planned for April 2025. If you have sites that support automatic background updates, [&#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:8649:\"\n<h2 class=\"wp-block-heading\">WordPress 6.7.1 is now available!</h2>\n\n\n\n<p>This minor release features 16 bug fixes <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&amp;milestone=6.7.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\">throughout Core</a> and <a href=\"https://github.com/WordPress/wordpress-develop/pull/7851\">the Block Editor</a>.</p>\n\n\n\n<p>WordPress 6.7.1 is a fast-follow release with a strict focus on bugs introduced in WordPress 6.7. The next major release will be <a href=\"https://make.wordpress.org/core/6-8/\">version 6.8</a>, <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">planned for April 2025</a>.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.7.1.zip\">download WordPress 6.7.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-7-1\">visit the HelpHub site</a>. You can find a summary of the maintenance updates in this release in the <a href=\"https://make.wordpress.org/core/?p=116365\">Release Candidate announcement</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"is-style-default\">This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>.</p>\n\n\n\n<p class=\"is-style-default\">WordPress 6.7.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a>, <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a>, <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a>, <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a>, <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glynnquelch/\">glynnquelch</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a>, <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</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/369work/\">miroku</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a>, <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a>, <a href=\"https://profiles.wordpress.org/room34/\">room34</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a>, <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a>, <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a>, <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a>, <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a>, <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a>, <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a>, and <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C080HLPP2Q6\">#6-8-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/aaroncampbell/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>aaroncampbell</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/cbravobernal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbravobernal</a>, <a href=\'https://profiles.wordpress.org/ankit-k-gupta/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ankit-k-gupta</a> for proofreading.</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:\"18096\";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: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:27:\"WordPress 6.7 “Rollins”\";s:7:\"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://wordpress.org/news/2024/11/rollins/\";s: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 Nov 2024 21:35:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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: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:\"6.7\";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:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18066\";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:422:\"WordPress 6.7, code-named \'Rollins,\' celebrates legendary jazz saxophonist Sonny Rollins and debuts the sleek, versatile Twenty Twenty-Five theme, designed for any blog, any scale. Dive into new font management features and gain a macro perspective on your site with the Zoom Out feature. Embrace the spirit of creativity and bold expression that defines Rollins\' music as you explore WordPress 6.7’s latest innovations.\";s: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:71714:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1024%2C535&#038;ssl=1\" alt=\"\" class=\"wp-image-18085\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=2048%2C1070&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.7, code-named &#8220;Rollins,&#8221; pays tribute to the legendary jazz saxophonist Sonny Rollins. Known as one of the greatest improvisers and pioneers in jazz, Rollins has influenced generations of musicians with his technical brilliance, innovative spirit, and fearless approach to musical expression.</p>\n\n\n\n<p>Sonny Rollins&#8217; work is characterized by its unmatched energy and emotional depth. His compositions, such as &#8220;St. Thomas,&#8221; &#8220;Oleo,&#8221; and &#8220;Airegin,&#8221; are timeless jazz standards, celebrated for their rhythmic complexity and melodic inventiveness. Rollins&#8217; bold and exploratory style resonates with WordPress&#8217; own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.</p>\n\n\n\n<p>Embrace the spirit of innovation and spontaneity that defines Rollins&#8217; sound as you dive into the new features and enhancements of WordPress 6.7.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.7!</h2>\n\n\n\n<p>WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.7.zip\" target=\"_blank\" rel=\"noreferrer noopener\">Download WordPress 6.7 “Rollins”</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Twenty Twenty-Five</h2>\n\n\n\n<h4 class=\"wp-block-heading\">Endless possibility without complexity</h4>\n\n\n\n<p>Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-tt5-2.webp?ssl=1\" alt=\"\" style=\"object-fit:cover\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Get the big picture with Zoom Out</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Explore your content from a new perspective</h4>\n\n\n\n<p>Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-zoom-2.webp?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Connect blocks and custom fields with no hassle (or code)</h3>\n\n\n\n<h4 class=\"wp-block-heading\">A streamlined way to create dynamic content</h4>\n\n\n\n<p>This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn&#8217;t already.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-block-bindings-2.webp?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Embrace your inner font nerd</h3>\n\n\n\n<h4 class=\"wp-block-heading\">New style section, new possibilities</h4>\n\n\n\n<p>Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-font-presets-2.png?ssl=1\" alt=\"\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p>WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p>65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p>For a comprehensive overview of all the new features and enhancements in WordPress 6.7, please visit the feature-showcase website.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/releases/6-7/\">Check out what&#8217;s new</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.7</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.7\">WordPress 6.7 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p>Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-7-field-guide/\">WordPress 6.7 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.7 release squad</h2>\n\n\n\n<p>Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.7 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordinator: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a></li>\n\n\n\n<li>Editor Tech Leads: <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>,&nbsp;<a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>,&nbsp;<a href=\"https://wordpress.org/support/users/colorful-tones/\">Damon Cook</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K. Gupta</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/adamsilverstein/\"></a><a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Default Theme Design Lead:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li>\n\n\n\n<li>Default Theme Development Leads:&nbsp;<a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>,&nbsp;<a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p>WordPress 6.7 reflects the tireless efforts and passion of more than 780 contributors in countries all over the world. This release also welcomed over 230 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/benniledl/\">!Benni</a> · <a href=\"https://profiles.wordpress.org/75thtrombone/\">75thtrombone</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/aware/\">Aaron Ware</a> · <a href=\"https://profiles.wordpress.org/aatanasov/\">aatanasov</a> · <a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/fitehal/\">Abhishek Deshpande</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/acafourek/\">acafourek</a> · <a href=\"https://profiles.wordpress.org/adamkheckler/\">Adam Heckler</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adrian2k7/\">Adrian</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/ahmarzaidi/\">Ahmar Zaidi</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a> · <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akashdhawade/\">Akash Dhawade</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> · <a href=\"https://profiles.wordpress.org/alanfuller/\">Alan Fuller</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alessandrotesoro/\">Alessandro Tesoro</a> · <a href=\"https://profiles.wordpress.org/ralessio/\">Alessio</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/digitalex11/\">Alexander Frank</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/harlet7/\">Alexandru Horeanu</a> · <a href=\"https://profiles.wordpress.org/ali7ali/\">Ali Ali</a> · <a href=\"https://profiles.wordpress.org/aliaghdam/\">aliaghdam</a> · <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amincharoliya/\">Amin Charoliya</a> · <a href=\"https://profiles.wordpress.org/amirthepiper/\">Amir Abbas</a> · <a href=\"https://profiles.wordpress.org/amitraj2203/\">Amit Raj</a> · <a href=\"https://profiles.wordpress.org/amjadr360/\">Amjad Ali</a> · <a href=\"https://profiles.wordpress.org/anthakkar08/\">Anand Thakkar</a> · <a href=\"https://profiles.wordpress.org/andergmartins/\">andergmartins</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a> · <a href=\"https://profiles.wordpress.org/andreiglingeanu/\">andreiglingeanu</a> · <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</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/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankit k gupta/\">Ankit K. Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/the-ank/\">Ankur Vishwakarma</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/perezcarreno/\">Armando J. Perez Carreno</a> · <a href=\"https://profiles.wordpress.org/armandsdz/\">Armands</a> · <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a> · <a href=\"https://profiles.wordpress.org/ambrosiawt/\">Art Smith</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/arypneta/\">arypneta</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/bjerke-johannessen/\">B&#229;rd Bjerke Johannessen</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart Kalisz</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/neoxx/\">Bernhard Riedl</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> · <a href=\"https://profiles.wordpress.org/berubenic/\">berubenic</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai13/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bijit027/\">bijit027</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blindmikey/\">blindmikey</a> · <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdannikolic/\">Bogdan Nikolic</a> · <a href=\"https://profiles.wordpress.org/veryard/\">Brad</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/brentjettgmailcom/\">Brent Jett</a> · <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bgosnell/\">Brian Gosnell</a> · <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a> · <a href=\"https://profiles.wordpress.org/bridgetwes/\">bridgetwes</a> · <a href=\"https://profiles.wordpress.org/brobken/\">brobken</a> · <a href=\"https://profiles.wordpress.org/freibergergarcia/\">Bruno Freiberger Garcia</a> · <a href=\"https://profiles.wordpress.org/cambabutonono/\">Cambabutonono</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/carstenbach/\">Carsten Bach</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a> · <a href=\"https://profiles.wordpress.org/mchirag2002/\">Chirag Mathur</a> · <a href=\"https://profiles.wordpress.org/chrico/\">ChriCo</a> · <a href=\"https://profiles.wordpress.org/jazzs3quence/\">Chris Reynolds</a> · <a href=\"https://profiles.wordpress.org/eclare/\">Chris Trynkiewicz (Sukces Strony)</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a> · <a href=\"https://profiles.wordpress.org/ckanitz/\">Christopher Kanitz</a> · <a href=\"https://profiles.wordpress.org/cpal/\">Christos Paloukas</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian</a> · <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/craynor/\">craynor</a> · <a href=\"https://profiles.wordpress.org/creativethemeshq/\">creativethemeshq</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/cweiske/\">cweiske</a> · <a href=\"https://profiles.wordpress.org/coquardcyr/\">Cyrille</a> · <a href=\"https://profiles.wordpress.org/da5f656f/\">da5f656f</a> · <a href=\"https://profiles.wordpress.org/xendo/\">Dademaru</a> · <a href=\"https://profiles.wordpress.org/daleharrison/\">daleharrison</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/colorful tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/daniguardiola/\">Dani Guardiola</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/itsdanny/\">Danny</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">Dareth NHANG</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/daveagp/\">daveagp</a> · <a href=\"https://profiles.wordpress.org/fac3less/\">David</a> · <a href=\"https://profiles.wordpress.org/dballari/\">David Ballarin Prunera</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/davidabowman/\">David Bowman</a> · <a href=\"https://profiles.wordpress.org/davidhbrown/\">David Brown</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/davidgodleman10up/\">David Godleman</a> · <a href=\"https://profiles.wordpress.org/dhenriet/\">David Henriet</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/ddewan/\">ddewan</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/deepakrohilla/\">Deepak Rohilla</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/dekadinious/\">Dekadinious</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dsmart/\">Derek Smart</a> · <a href=\"https://profiles.wordpress.org/deryck/\">Deryck</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a> · <a href=\"https://profiles.wordpress.org/devansh2002/\">Devansh Chaudhary</a> · <a href=\"https://profiles.wordpress.org/devspace/\">devspace</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dimplemodi/\">dimplemodi</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divibanks/\">Divi Banks</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a> · <a href=\"https://profiles.wordpress.org/cyberorca/\">Doni Kuntoro</a> · <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a> · <a href=\"https://profiles.wordpress.org/dorzki/\">Dor Zuberi</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/eballeste/\">eballeste</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/edithlb/\">Edith Milagros Loayza Barazorda</a> · <a href=\"https://profiles.wordpress.org/ejnwebmaster/\">ejnwebmaster</a> · <a href=\"https://profiles.wordpress.org/elfu98/\">elfu98</a> · <a href=\"https://profiles.wordpress.org/eliorivero/\">Elio Rivero</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a> · <a href=\"https://profiles.wordpress.org/eatse/\">Emmanue ATS&#201;</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/emmanuel78/\">emmanuel78</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/ericdye/\">Eric Dye</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/erikiva/\">erikiva</a> · <a href=\"https://profiles.wordpress.org/erikyo/\">erikyo</a> · <a href=\"https://profiles.wordpress.org/eroan/\">Eroan Boyer</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> · <a href=\"https://profiles.wordpress.org/fahimmurshed/\">FahimMurshed</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fazyshah/\">Faizan Nabi</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/fayyazfayzi/\">Fayyaz</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fjorgemota/\">Fernando Jorge Mota (a11n)</a> · <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/fullworks/\">fullworks</a> · <a href=\"https://profiles.wordpress.org/gwallace87/\">Gale Wallace</a> · <a href=\"https://profiles.wordpress.org/gansbrest/\">gansbrest</a> · <a href=\"https://profiles.wordpress.org/garethelwell/\">Gareth Elwell</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/gauravtiwari/\">Gaurav Tiwari</a> · <a href=\"https://profiles.wordpress.org/gauravsingh7/\">gauravsingh7</a> · <a href=\"https://profiles.wordpress.org/georgwordpress/\">Georg</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/germanfrelo/\">Germ&#225;n Freixin&#243;s</a> · <a href=\"https://profiles.wordpress.org/glynnquelch/\">Glynn Quelch</a> · <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a> · <a href=\"https://profiles.wordpress.org/graemef/\">GraemeF</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/greentreefrog/\">greentreefrog</a> · <a href=\"https://profiles.wordpress.org/greenworld/\">GreenWorld</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/gyurmey/\">Gyurmey</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/halilesen/\">Halil ESEN</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hjklemenz/\">Hans J&#246;rg Klemenz</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardipparmar/\">Hardip Parmar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/plaidharper/\">Harper Holsinger</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshvaishnav/\">harshvaishnav</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hectorjarquin/\">hectorjarquin</a> · <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Iamarino</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hirschferkel/\">hirschferkel</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/h71/\">Hossein</a> · <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/kardi420/\">Ibrahim</a> · <a href=\"https://profiles.wordpress.org/ibrahimriaz/\">Ibrahim Riaz</a> · <a href=\"https://profiles.wordpress.org/imranh920/\">Imran Hossain (a11n)</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/itapress/\">itapress</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jpstevens/\">Jack Stevens</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/smithjw1/\">Jacob Smith</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jainil07/\">Jainil Shah</a> · <a href=\"https://profiles.wordpress.org/jtgreyd/\">Jakob Trost</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/jamesosborne/\">James Osborne</a> · <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a> · <a href=\"https://profiles.wordpress.org/jwgoedert/\">James Wesley Goedert</a> · <a href=\"https://profiles.wordpress.org/janpfeil/\">Jan Pfeil</a> · <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/jasonbahl/\">Jason Bahl</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javad2000/\">javad2000</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/jawadwp/\">Jawad Malik</a> · <a href=\"https://profiles.wordpress.org/topdownjimmy/\">Jay</a> · <a href=\"https://profiles.wordpress.org/jayadevankbh/\">Jayadevan k</a> · <a href=\"https://profiles.wordpress.org/drjosh07/\">jbrya029</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">JD Ahir</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jennifarhat/\">Jennifer Farhat</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/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/skobe/\">Jesko Bendmann</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jetaldobariya1/\">Jetal dobariya</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jimmyh61/\">jimmyh61</a> · <a href=\"https://profiles.wordpress.org/joemoto/\">Joe Cartonia</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</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/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</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/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/elbsegler/\">Jonas</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</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/jonnywatersbb/\">Jonny Waters</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josevarghese/\">Jose Varghese</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jossnaz/\">Jossnaz</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/julianoe/\">julianoe</a> · <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</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/junedsabaliya/\">Juned Sabaliya</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/jzern/\">jzern</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">Kaavya Iyer (woo-hc)</a> · <a href=\"https://profiles.wordpress.org/arkenon/\">Kadim G&#252;ltekin</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/ikamal/\">Kamal Hosen</a> · <a href=\"https://profiles.wordpress.org/kamran8176/\">Kamran Hussen</a> · <a href=\"https://profiles.wordpress.org/karan4word/\">Karan Gupta</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/kartikmehta/\">Kartik Mehta</a> · <a href=\"https://profiles.wordpress.org/kartik-suthar/\">Kartik Suthar</a> · <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd (a11n)</a> · <a href=\"https://profiles.wordpress.org/keffr3n/\">Keffr3n</a> · <a href=\"https://profiles.wordpress.org/kel-dc/\">Kel Santiago-Pilarski</a> · <a href=\"https://profiles.wordpress.org/kellenmace/\">Kellen Mace</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/ktaron/\">Kevin Taron</a> · <a href=\"https://profiles.wordpress.org/kevinswalsh/\">kevinswalsh</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kimclow/\">Kim Clow</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kisquian/\">kisquian</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/kracked888/\">kracked888</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a> · <a href=\"https://profiles.wordpress.org/kristincodeswp/\">KristinCodesWP</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/gohelkunjan/\">Kunjan Gohel</a> · <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a> · <a href=\"https://profiles.wordpress.org/kushang78/\">Kushang Tailor</a> · <a href=\"https://profiles.wordpress.org/mlaetitia/\">Lae</a> · <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a> · <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> · <a href=\"https://profiles.wordpress.org/laranz/\">Lawrence Joe</a> · <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/lifelightweb/\">lifelightweb</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/louiswol94/\">Louis Wolmarans</a> · <a href=\"https://profiles.wordpress.org/louwie17/\">Lourens</a> · <a href=\"https://profiles.wordpress.org/lovesoni1999/\">Love Soni</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Lucas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madpeter/\">madpeter</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/mkrndmane/\">Makarand G. Mane</a> · <a href=\"https://profiles.wordpress.org/manbo/\">manbo</a> · <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> · <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani (a11n)</a> · <a href=\"https://profiles.wordpress.org/marianguas/\">Mar&#237;a Anguas</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/mardroid/\">Marcel Tannich</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> · <a href=\"https://profiles.wordpress.org/marcwieland95/\">marcwieland95</a> · <a href=\"https://profiles.wordpress.org/igreenie/\">Marek Železn&#253;</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/mariayohana/\">Maria Yohana</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</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/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/mat_/\">mat_</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattormeeple/\">Matt Sherman</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/lonelyvegan/\">Matthew Riley MacPherson</a> · <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a> · <a href=\"https://profiles.wordpress.org/mattraines/\">mattraines</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcrisp1972/\">mcrisp1972</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/mhshohel/\">Md Hossain Shohel</a> · <a href=\"https://profiles.wordpress.org/istiaqhossain/\">Md. Istiaq Hossain</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/meteorlxy/\">meteorlxy</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a> · <a href=\"https://profiles.wordpress.org/michaelbourne/\">Michael Bourne</a> · <a href=\"https://profiles.wordpress.org/hrkhal/\">Michael James Ilett</a> · <a href=\"https://profiles.wordpress.org/michaelpick/\">michaelpick</a> · <a href=\"https://profiles.wordpress.org/michaelwp85/\">michaelwp85</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mielbu/\">Michelle Bulloch</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ppolo99/\">Mike Poland</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikeb8s/\">mikeb8s</a> · <a href=\"https://profiles.wordpress.org/mikeybinns/\">Mikey Binns</a> · <a href=\"https://profiles.wordpress.org/milamj/\">milamj</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/369work/\">miroku</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mklusak/\">mklusak</a> · <a href=\"https://profiles.wordpress.org/mleathem/\">mleathem</a> · <a href=\"https://profiles.wordpress.org/mlf20/\">mlf20</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor</a> · <a href=\"https://profiles.wordpress.org/mosne/\">Mosne / Paolo Tesei</a> · <a href=\"https://profiles.wordpress.org/mossy2100/\">mossy2100</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir a11n</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/nagpai/\">Nagesh Pai</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">Nate Finch</a> · <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a> · <a href=\"https://profiles.wordpress.org/nhrrob/\">Nazmul Hasan Robin</a> · <a href=\"https://profiles.wordpress.org/nebojsajurcic/\">Neboj&#353;a Jurčić</a> · <a href=\"https://profiles.wordpress.org/nek285/\">nek285</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neo2k23/\">neo2k23</a> · <a href=\"https://profiles.wordpress.org/neotrope/\">neotrope</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nickbohle/\">Nick Bohle</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikitasolanki1812/\">Nikita Solanki</a> · <a href=\"https://profiles.wordpress.org/nirajgirixd/\">Niraj Giri</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">Nirav Sherasiya</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nurielmeni/\">nurielmeni</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/finalwebsites/\">Olaf Lederer</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/olivierlafleur/\">Olivier Lafleur</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/oscarhugopaz/\">Oscar Hugo Paz</a> · <a href=\"https://profiles.wordpress.org/prestonwordsworth/\">p15h</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/otakupahp/\">Pablo Hern&#225;ndez</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/pander/\">pander</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/obrienlabs/\">Pat O\'Brien</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</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/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/paulwilde/\">Paul Wilde</a> · <a href=\"https://profiles.wordpress.org/paulcline/\">paulcline</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/perryrylance/\">perryrylance</a> · <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/pevogam/\">pevogam</a> · <a href=\"https://profiles.wordpress.org/mr2p/\">Phi Phan</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/philwebs/\">philwebs</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/pgeorgiev/\">Plamen Georgiev</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pooja9712/\">pooja9712</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranitdugad/\">Pranit Dugad</a> · <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik Kumar</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a> · <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/spanglishwebs/\">Rachel Winspear</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Gallani</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/rahmatgumilar/\">Rahmat Gumilar</a> · <a href=\"https://profiles.wordpress.org/rahulharpal/\">rahulharpal</a> · <a href=\"https://profiles.wordpress.org/imrraaj/\">Raj Patel</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/shashwatahalder01/\">Rajkumar Shashwata Halder</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ramswarup/\">Ramswarup Rathod</a> · <a href=\"https://profiles.wordpress.org/xyulex/\">Raul Martinez</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcneil/\">rcneil</a> · <a href=\"https://profiles.wordpress.org/realthemes/\">realthemes</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">reputeinfosystems</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rhellewellgmailcom/\">Rick Hellewell</a> · <a href=\"https://profiles.wordpress.org/riddhipatel/\">Riddhi Patel</a> · <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a> · <a href=\"https://profiles.wordpress.org/rishishah/\">Rishi Shah</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/rithik56/\">rithik56</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robert-biswas/\">Robert Biswas</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/rocketworks/\">rocket.works - Dominik Friedrich</a> · <a href=\"https://profiles.wordpress.org/rodelgc/\">Rodel Calasagsag a11n</a> · <a href=\"https://profiles.wordpress.org/rghedin/\">Rodrigo</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/geekofshire/\">Rohan Jha</a> · <a href=\"https://profiles.wordpress.org/rohitmathur7/\">rohitmathur7</a> · <a href=\"https://profiles.wordpress.org/room34/\">room34</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/roygbyte/\">roygbyte</a> · <a href=\"https://profiles.wordpress.org/royho/\">royho</a> · <a href=\"https://profiles.wordpress.org/rpf5573/\">rpf5573</a> · <a href=\"https://profiles.wordpress.org/rslee/\">rslee</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/rleeson/\">Ryan Leeson</a> · <a href=\"https://profiles.wordpress.org/ryancurban/\">Ryan Urban</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sadmansh/\">sadmansh</a> · <a href=\"https://profiles.wordpress.org/isaeedam/\">Saeed Piri</a> · <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> · <a href=\"https://profiles.wordpress.org/sahiladit/\">sahiladit</a> · <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samtoohey93/\">Sam Toohey</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samuelsidler/\">Samuel Sidler</a> · <a href=\"https://profiles.wordpress.org/samuelsilvapt/\">Samuel Silva</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiya Venkatesan</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/sfougnier/\">Saul Fougnier</a> · <a href=\"https://profiles.wordpress.org/sauliusv/\">Saulius Vikerta</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scottculverhouse/\">scottculverhouse</a> · <a href=\"https://profiles.wordpress.org/seanavers/\">seanavers</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/kuuuzya/\">Sergey</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/zahardoc/\">Serhiy Zakharchenko</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/severinepozzo/\">Severine Pozzo</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/sharonaustin/\">Sharon Austin</a> · <a href=\"https://profiles.wordpress.org/sheulyshila/\">SheulyShila</a> · <a href=\"https://profiles.wordpress.org/spdft/\">Shoe</a> · <a href=\"https://profiles.wordpress.org/showravhasan/\">Showrav Hasan</a> · <a href=\"https://profiles.wordpress.org/shreya0204/\">Shreya Agarwal</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/silaskoehler/\">Silas K&#246;hler</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/simo_m/\">Simone Maranzana</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/sophiegy/\">Sophie - a11n</a> · <a href=\"https://profiles.wordpress.org/souptik/\">Souptik Datta</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stein2nd/\">stein2nd</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/thompsonsj/\">Steven Thompson</a> · <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a> · <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a> · <a href=\"https://profiles.wordpress.org/styleshit/\">styleshit</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">Sunil Prajapati</a> · <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a> · <a href=\"https://profiles.wordpress.org/superchlorine/\">superchlorine</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/jannathsyeda/\">Syeda Fahima Jannath</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan Kumer Das</a> · <a href=\"https://profiles.wordpress.org/taylorgorman/\">Taylor Gorman</a> · <a href=\"https://profiles.wordpress.org/tdrayson/\">tdrayson</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</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/thrijith/\">Thrijith Thankachan</a> · <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a> · <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tirth03/\">Tirth Doshi</a> · <a href=\"https://profiles.wordpress.org/tmanoilov/\">tmanoilov</a> · <a href=\"https://profiles.wordpress.org/toastercookie/\">toastercookie</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tomllobet/\">Tomas Llobet-Arany</a> · <a href=\"https://profiles.wordpress.org/tomhine/\">tomhine</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/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/tropicalista/\">tropicalista</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tunetheweb/\">tunetheweb</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/up1512001/\">up1512001</a> · <a href=\"https://profiles.wordpress.org/ukdrahul/\">Uttam Kumar Dash</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">valer1e</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/vertisoft/\">Vertisoft</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vijaysinh9094/\">Vijaysinh Zala</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/wbdv/\">wbdv</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webwurm/\">webwurm</a> · <a href=\"https://profiles.wordpress.org/wesrapyd/\">wesrapyd</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williamalexander/\">William Alexander</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wongjn/\">wongjn</a> · <a href=\"https://profiles.wordpress.org/wpeople/\">WPeople</a> · <a href=\"https://profiles.wordpress.org/wpnoman0/\">wpnoman0</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wzieba/\">wzieba</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani</a> · <a href=\"https://profiles.wordpress.org/collet/\">Yann</a> · <a href=\"https://profiles.wordpress.org/yguyon/\">Yannis Guyon</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a> · <a href=\"https://profiles.wordpress.org/ytfeldrawkcab/\">ytfeLdrawkcaB</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yukinobu/\">Yukinobu Asakawa</a> · <a href=\"https://profiles.wordpress.org/yuvrajsinh2211/\">Yuvrajsinh Sisodiya</a> · <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a> · <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a> · <a href=\"https://profiles.wordpress.org/zitaruksergij/\">zitaruksergij</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<p>More than <a href=\"https://translate.wordpress.org/stats/\">40 locales have fully translated</a> WordPress 6.7 into their language making this one of the most translated releases ever on day one. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p>Participation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</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:\"18066\";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: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:33:\"WordPress 6.7 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/2024/11/wordpress-6-7-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:\"Tue, 05 Nov 2024 17:02:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{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:\"6.7\";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:\"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:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18056\";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:360:\"The third release candidate (RC3) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site. Reaching this phase [&#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:\"David Baumwald\";s: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:11405:\"\n<p>The third release candidate (RC3) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\" data-type=\"link\" data-id=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC3 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC3 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC3?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC2, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-29&amp;until=2024-11-05\">GitHub commits for 6.7</a> since October 29</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F29%2F2024..11%2F05%2F2024&amp;milestone=6.7&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 29</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC3, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? <span lang=\"es\">¿Español?</span> <span lang=\"fr\">Français?</span> <span lang=\"ru\">Русский?</span> <span lang=\"ja\">日本?</span> <span lang=\"hi\">हिन्दी?</span> <span lang=\"bn\">বাংলা?</span> You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p><em>RC3 arrives,<br>Final polish, last bugs fall,<br>Six point seven calls.</em></p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a></em>, <a href=\'https://profiles.wordpress.org/sabernhardt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sabernhardt</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:\"18056\";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: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:33:\"WordPress 6.7 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/2024/10/wordpress-6-7-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:\"Tue, 29 Oct 2024 17:08:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{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:\"6.7\";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:\"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:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18043\";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:361:\"The second release candidate (RC2) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site. Reaching this phase [&#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:\"David Baumwald\";s: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:11116:\"\n<p>The second release candidate (RC2) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC2</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\" data-type=\"link\" data-id=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=218cf8089bb18bbb3f4f118d3f79a8a57e26f7a6%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC2 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC2 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC2?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC1, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-22&amp;until=2024-10-29\">GitHub commits for 6.7</a> since October 22</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F22%2F2024..10%2F29%2F2024&amp;milestone=6.7&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 22</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC2, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p><em>Six point seven’s dawn,<br>RC2 sweeps bugs away,<br>Sites stand firm and strong.</em></p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</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:\"18043\";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:72:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress Community Creates 1,000 Block Themes in 1,000 Days\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2024/10/wordpress-community-creates-1000-block-themes-in-1000-days/\";s: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, 23 Oct 2024 17:01:58 +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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";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:\"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: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:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"block editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;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:\"\";}i:5;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18029\";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:193:\"In nearly 1,000 days, the WordPress community has created 1,000 Block themes—coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. \";s: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:\"annezazu\";s: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:4122:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"536\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news.webp?resize=1024%2C536&#038;ssl=1\" alt=\"Layout of numerous colorful images of block themes laid out in a grid.\" class=\"wp-image-18033\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=1024%2C536&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=768%2C402&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=1536%2C804&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/10/blockthemes-featured-image-news-scaled.webp?resize=2048%2C1072&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"is-style-default has-large-font-size\">In nearly 1,000 days, the WordPress community has created <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes</a>—coming together to use the full potential of the Site Editor and unleash new creative possibilities for everyone. </p>\n\n\n\n<p class=\"is-style-default\">First introduced in WordPress 5.9, Block themes have steadily evolved, improving flexibility and functionality for themers, users, and agencies alike. Now, design tools allow customizing almost every detail. With style variations, users can change the overall look of their site in a few clicks. You can even use <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/\">curation options</a> to customize the editing process itself. But we’re not done! We can’t wait to keep pushing Block themes even further. Thank you to every early adopter who, by embracing early features with passion, helped shape the Block themes we love today with feedback and testing.</p>\n\n\n\n<p>If you haven’t yet explored Block themes, check out some of the resources below to get inspired:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use one of the <a href=\"https://wordpress.org/themes/tags/full-site-editing/\">1,000 Block themes available</a> and see what you can create. For an easy way to explore, try <a href=\"https://wordpress.org/playground\">WordPress Playground</a> to quickly get started with a temporary site.&nbsp;</li>\n\n\n\n<li>Read the <a href=\"https://developer.wordpress.org/themes/\">Theme handbook</a> to understand types of themes, how themes work, and how to get started building.&nbsp;</li>\n\n\n\n<li>Use the <a href=\"https://learn.wordpress.org/lesson/create-block-theme-plugin/\">Create Block Theme plugin</a> to streamline Block theme creation with a <a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">dedicated tutorial</a> on Learn WordPress that will help you get started.&nbsp;&nbsp;</li>\n\n\n\n<li>Get inspired by <a href=\"https://github.com/WordPress/community-themes\">watching and joining community members building themes together</a>. This is a great way for folks new to Block themes to learn, hands-on.&nbsp;</li>\n</ul>\n\n\n\n<p>Let’s celebrate and share our contributions! Please comment on the <a href=\"https://make.wordpress.org/themes/2024/10/23/celebrating-1000-block-themes-in-the-themes-repository/\">Theme Team’s post dedicated to highlighting this milestone</a> to share your favorite Block theme and thank those who have contributed along the way.&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\'https://profiles.wordpress.org/kristastevens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kristastevens</a> for editorial help, <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> for the featured image, and <a href=\'https://profiles.wordpress.org/kafleg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kafleg</a> for reviewing.</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:\"18029\";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: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:33:\"WordPress 6.7 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2024/10/wordpress-6-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2024 16:42: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:8:\"category\";a:5:{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:\"6.7\";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:\"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:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18023\";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:360:\"The first release candidate (RC1) for WordPress 6.7 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC1 on a test server and site. Reaching this phase [&#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:\"David Baumwald\";s: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:10920:\"\n<p>The first release candidate (RC1) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC1 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-RC1</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=5087acab42d5354c8766303d13b78c8a77ac331b%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC1 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table><figcaption class=\"wp-element-caption\">You can test the RC1 version in four ways.</figcaption></figure>\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC1?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since Beta 3, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.5?since=2024-10-15&amp;until=2024-10-22\">GitHub commits for 6.7</a> since October 15</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F15%2F2024..10%2F22%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 15</li>\n</ul>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/new-block-type-registration-apis-to-improve-performance-in-wordpress-6-7/\">New block type registration APIs to improve performance in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/08/15/automatic-conversion-of-heic-images-to-jpeg-in-wordpress-6-7/\">Automatic conversion of HEIC images to JPEG in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/\">Auto Sizes for Lazy Loaded Images in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/new-plugin-template-registration-api-in-wordpress-6-7/\">New Plugin Template Registration API in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/developer-notes-for-zoom-out-in-wordpress-6-7/\">Developer Notes for Zoom Out in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/block-bindings-improvements-to-the-editor-experience-in-6-7/\">Block Bindings: Improvements to the Editor Experience in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/21/i18n-improvements-6-7/\">Internationalization improvements in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/17/updates-to-the-html-api-in-6-7/\">Updates to the HTML API in 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/20/miscellaneous-block-editor-changes-in-wordpress-6-7/\">Miscellaneous Block Editor Changes in WordPress 6.7</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/tag/dev-notes+6-7/\">All 6.7-related developer notes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本? हिन्दी? বাংলা? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC1) also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.7 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>I See An R.C.<br>You See A Chance For Testing<br>Six Seven For The Win!</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\'https://profiles.wordpress.org/atachibana/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>atachibana</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</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:\"18023\";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: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:62:\"Expanding Our Code of Conduct to Protect Private Conversations\";s:7:\"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:65:\"https://wordpress.org/news/2024/10/protect-private-conversations/\";s: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, 19 Oct 2024 00: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:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";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:\"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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17994\";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:346:\"At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our Community Code of Conduct already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of [&#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: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:2937:\"\n<p>At the heart of our community is our shared pledge to create a space that is harassment-free, welcoming, and inclusive for all. Our <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/\">Community Code of Conduct</a> already outlines a clear set of expectations, while also providing examples of unacceptable actions. Today, we are reinforcing our values by adding another element to our list of unacceptable behaviors: Publishing private messages without consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Addition Matters</h2>\n\n\n\n<p>The relationships we build within our community often involve private discussions. These conversations may involve sensitive matters, personal experiences, or simply casual exchanges. Regardless of the content, every individual should feel confident that their private communications will remain private unless they grant explicit permission to share them.</p>\n\n\n\n<p>Sharing private messages without consent is a breach of trust that can also lead to unintended harm, including emotional distress or misrepresentation. When members of our community feel they cannot trust others in their personal conversations, it undermines the collaborative spirit that is crucial to our collective success.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How This Change Protects the Community</h2>\n\n\n\n<p>By explicitly addressing the publication of private messages without consent, we are reinforcing an existing unacceptable behavior in our Community Code of Conduct: Other conduct which could reasonably be considered inappropriate in a professional setting. Sharing private communications without permission is a clear violation of professional integrity.</p>\n\n\n\n<p>This new addition ensures that private messages receive the same level of protection as personal information and that sensitive communications shared in confidence will not be disclosed without prior consent. An important exception to this is when sharing private messages is necessary for reporting incidents or concerns to the <a href=\"https://make.wordpress.org/community/handbook/irt/\">Incident Response Team</a>, as part of our commitment to maintaining a safe and respectful environment.</p>\n\n\n\n<p>Ultimately, this change encourages honest, constructive engagement across all levels of participation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Moving Forward Together</h2>\n\n\n\n<p>The strength of our community lies in the trust we place in one another. By clarifying and reinforcing our expectations, we are taking another step toward maintaining an inclusive, respectful, and safe environment for everyone.This new addition will take effect immediately, and violations will be handled in accordance with our existing <a href=\"https://make.wordpress.org/handbook/community-code-of-conduct/#enforcement\">enforcement guidelines</a>. Together, we can ensure our community remains a place of collaboration, trust, and mutual respect.</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:\"17994\";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: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:27:\"WordPress Thanks Salesforce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/thank-you-salesforce/\";s: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, 18 Oct 2024 20:17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"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=18012\";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:326:\"In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive. Because of my friendships with the co-founders of Slack, Stewart Butterfield and Cal Henderson, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We [&#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:\"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:2645:\"\n<p>In the midst of our legal battles with Silver Lake and WP Engine, I wanted to take a moment to highlight something positive.</p>\n\n\n\n<p>Because of my friendships with the co-founders of Slack, <a href=\"https://x.com/stewart\">Stewart Butterfield</a> and <a href=\"https://x.com/iamcal\">Cal Henderson</a>, WordPress.org has had a free version of the Pro version of Slack since they started in 2009. We switched from IRC to Slack, and it was like superpowers were unlocked for our team.</p>\n\n\n\n<p>Over the past 10 years, <a href=\"https://slack.com/\">Slack</a> has been our secret weapon of productivity compared to many other open source projects. Its amazing collaboration features have allowed us to scale WordPress from running just a few blogs to now powering around 43% of all websites in the world, almost 10 times the runner-up in the market.</p>\n\n\n\n<p>As we have scaled from very small to very large, Slack has scaled right alongside us, seemingly effortlessly. WordPress.org currently has 49,286 users on its <a href=\"https://slack.com/pricing\">Slack Business+ instance</a>, which would cost at least $8.8M/yr if we were paying. (And we may need to go to their enterprise grid, to support e-discovery in the lawsuit attacks from WP Engine, which would cost even more.) </p>\n\n\n\n<p>This incredible generosity was continued by the enlightened leadership of Marc Benioff at Salesforce when they bought Slack in 2020. However, it has not been widely known or recognized on our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future page</a>, which only highlights self-reported contributor hours and doesn&#8217;t mention Salesforce at all.</p>\n\n\n\n<p>This is a grave error, and we are correcting it today. Going forward:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I would like every business in the world to see the amazing collaboration and productivity gains Slack has enabled for our community of tens of thousands of volunteers worldwide and <a href=\"https://slack.com/\">consider adopting it for their own business</a>.</li>\n\n\n\n<li>Salesforce will have a complimentary top sponsor slot at our flagship WordCamp events in the <a href=\"https://us.wordcamp.org/\">United States</a>, <a href=\"https://europe.wordcamp.org/\">Europe</a>, and <a href=\"https://asia.wordcamp.org/\">Asia</a>, which attract thousands of people each.</li>\n\n\n\n<li>We will update our <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a> to reflect contributions such as Salesforce&#8217;s going forward.</li>\n</ul>\n\n\n\n<p>We just want to repeat: Thank you. We hope to deepen our partnership with Salesforce in the future.</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:\"18012\";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: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:34:\"WP Engine Promotions &amp; Coupons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/10/wp-engine-promotions/\";s: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, 17 Oct 2024 15:19:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17996\";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:354:\"Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2258:\"\n<p>Given the egregious legal attacks by WP Engine against WordPress co-founder Matt Mullenweg, a number of their customers have been looking for alternative hosting, and in return a number of hosts have created specials and promotions for WP Engine customers looking to migrate to a host that has great relations with WordPress.org. Here they are, in alphabetical order.</p>\n\n\n\n<p>We&#8217;ll update this post if any new offers come online, get in touch and we&#8217;ll link it.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.bluehost.com/migrate-wordpress-website?channelid=P61C46097236S625N0B2A151D0E0000V107\">Bluehost will cover migration costs, and credit back your existing contract</a>. They offer 24/7 phone support, you can call them at 844-699-3907. Their wp.cloud-powered Cloud hosting starts at $29.99/mo.</li>\n\n\n\n<li><a href=\"https://www.dreamhost.com/switch-to-dreamhost/\">DreamHost is offering free migrations</a>, with plans starting at $16.95/mo.</li>\n\n\n\n<li><a href=\"https://hostinger.com/migrate\">Hostinger offers free migration for an unlimited number of websites with a 24/7 dedicated customer success team</a>. Their relevant cloud plans start at $7.99/mo. </li>\n\n\n\n<li><a href=\"https://www.nexcess.net/wp-engine-vs-nexcess/\">Nexcess has plans starting at $21/mo</a>.</li>\n\n\n\n<li><a href=\"https://pressable.com/wpe-contract-buyout/\">Pressable will credit back your current WP Engine contract and match their pricing</a>, so if you&#8217;re in the middle of a long contract with WP Engine, you don&#8217;t need to wait until your renewal time.</li>\n\n\n\n<li><a href=\"https://siteground.com/free-wp-migration\">SiteGround has a special with 83% off and unlimited automated WP migrations</a>, their plans start at $2.99/mo.</li>\n\n\n\n<li><a href=\"https://wordpress.com/migrate-from-wp-engine/\">WordPress.com will give you a free year of any plan they offer</a>, and donate 5% of your purchase price to the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>. Their relevant plans start at $25/mo.</li>\n\n\n\n<li>For large-scale enterprise customers, <a href=\"https://wpvip.com/wordpress-vip-vs-wp-engine/\">WordPress VIP will cover the cost of migration</a>. Their plans generally start at $2k/mo.</li>\n</ul>\n\n\n\n<p></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:\"17996\";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: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:20:\"WordPress 6.7 Beta 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:56:\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-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:\"Tue, 15 Oct 2024 00:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{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:\"6.7\";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:\"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:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=17984\";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 6.7 Beta 3 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 3 on a test server and site. You can test WordPress 6.7 Beta [&#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:\"David Baumwald\";s: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:8351:\"\n<p id=\"block-3cf2f536-f167-464f-a4ba-07f45105e476\">WordPress 6.7 Beta 3 is now ready for testing!</p>\n\n\n\n<p id=\"block-b65e3bf0-0494-4039-a701-f21e505600ad\"><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p id=\"block-e904322b-c488-4166-8312-0b769067b943\">You can test WordPress 6.7 Beta 3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.7-beta3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22https://playground.wordpress.net/plugin-proxy.php?build-ref=11b364fbffbab28d9127be91ee2d48f6645a6509%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 Beta 3 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p id=\"block-93b754f0-e211-47b7-ac89-349d85c2f02f\">The current target date for the final release of WordPress 6.7 is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p id=\"block-7b5d791d-225a-4623-83ee-19a586c7094b\"><strong>Catch up on what&#8217;s new in WordPress 6.7</strong>: Read the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-2/\">Beta 2</a> announcements for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-f1abd396-a019-4c9a-bcb8-9ac381a61ca1\">How to test this release</h2>\n\n\n\n<p id=\"block-92dfcab6-d2a8-4753-84ce-8ef7b6dd1e90\">Your help testing the WordPress 6.7 Beta 3 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7.</p>\n\n\n\n<p id=\"block-6519fad7-59ea-45f1-9b8f-ca14c09c865d\">If you encounter an issue, please report it to the Alpha/Beta area of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p id=\"block-4bd66b13-6784-4a4f-bb7a-b4dab8e5fc12\">Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-67b6a6c7-a95e-4b27-8946-a66d15105cb7\">Vulnerability bounty doubles during Beta/RC</h2>\n\n\n\n<p id=\"block-16175da3-84c9-45d0-b735-08a9d4453a14\">Between Beta 1, released on October 1, 2024, and the final Release Candidate (RC) scheduled for November 5, 2024, the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-14306771-b240-4e15-948f-7504757bbb61\">Beta 3 updates and highlights</h2>\n\n\n\n<p id=\"block-93917d31-4478-45b5-b71c-1c8a1f49cc65\">WordPress 6.7 Beta 3 contains more than 26 Editor updates and fixes since the Beta 2 release, including 18 tickets for WordPress core.</p>\n\n\n\n<p id=\"block-ffdc1220-c2f5-4c23-982b-60c366c629d1\">Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul id=\"block-3fcf78c7-bebc-42e1-96f6-8b605ea23aae\" class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-09&amp;until=2024-10-14\">GitHub commits for 6.7</a> since October 9, 2024</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F09%2F2024..10%2F14%2F2024&amp;milestone=6.7&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 9, 2024</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-c414b25e-802f-4f29-a31c-9e13394a4947\">A Beta 3 haiku</h2>\n\n\n\n<p id=\"block-a0f155a2-19b3-4645-a516-c7ae56541e5f\">Code in motion hums,<br>New features bloom, bugs retreat,<br>6.7 calls.</p>\n\n\n\n<p id=\"block-014ab749-322b-44bd-bf4f-bf5817d90bfd\"><em>Props to <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> and </em><a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a><em> for proofreading and review, and haiku from&nbsp;<a href=\"https://wordpress.slack.com/team/U030RHV73\" target=\"_blank\" rel=\"noreferrer noopener\">@colorful-tones</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:\"17984\";s: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:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 27 Nov 2024 14:30:25 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 27 Nov 2024 01:48:37 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:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";i:1727736619;s:21:\"cache_expiration_time\";i:1732761025;s:23:\"__cache_expiration_time\";i:1732761025;}','off'),
(1143,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1732761025','off'),
(1144,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{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:78:\"Do The Woo Community: WP Campus Connect with Pooja Derashri and Anand Upadhyay\";s:7:\"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:28:\"https://dothewoo.io/?p=87151\";s:7:\"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://dothewoo.io/wp-campus-connect-with-pooja-derashri-and-anand-upadhyay/\";s: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:183:\"Devin hosts Pooja and Anand to chat about WP Campus Connect, a successful initiative boosting Ajmer\'s WordPress community by targeting college students through workshops and seminars.\";s: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, 27 Nov 2024 10:07: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:5:\"BobWP\";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:86:\"Do The Woo Community: Host Marcus Burnette Shifts Focus to Agency Strategy at Bluehost\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=87071\";s:7:\"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://dothewoo.io/blog/host-marcus-burnette-shifts-focus-to-agency-strategy-at-bluehost/\";s: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:222:\"Marcus, a well-respected leader in the WordPress community, and host here at Do theWoo, transitions from GoDaddy to Bluehost as Sr. Manager for Agency Strategy, continuing to influence and support agencies in the industry.\";s: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, 27 Nov 2024 09:01: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:5:\"BobWP\";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:69:\"WPTavern: WordCamp Asia 2025 Announces Two Scholarships for 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=180542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/wordcamp-asia-2025-announces-two-scholarships-for-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:2168:\"<p>WordCamp Asia 2025, in partnership with The WordPress Foundation and WordCamp Central, has announced <a href=\"https://asia.wordcamp.org/2025/announcing-scholarships/\">two scholarship</a> opportunities for the upcoming event in Manila, Philippines. These scholarships aim to support community members by covering essential expenses such as flights, accommodation, and event tickets. A team of program managers from WordCamp Central and the WordPress Global Community Team will oversee the selection process.</p>\n\n\n\n<p>The<strong> </strong><a href=\"https://wordcampcentral.survey.fm/wcasia-2025-kim-parsell-scholarship-application\"><strong>Kim Parsell Memorial Scholarship</strong></a> is being <a href=\"https://wptavern.com/wordcamp-asia-and-wordcamp-europe-added-to-kim-parsell-memorial-scholarship-program\">extended to WordCamp Asia</a> for the very first time. Previously, this scholarship was exclusively available for WordCamp US attendees. It is designed to support women who are active contributors to the WordPress project, have never attended WordCamp Asia, and require financial assistance to participate in the 2025 event.</p>\n\n\n\n<p>The <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScEV6LyCaNTAaTNKQvDZqv0XOPzrzWZXWEUaNeSWp7HbWO3IA/viewform\"><strong>Diversity Fund Scholarship</strong></a> reflects WordCamp Asia&#8217;s commitment to inclusivity and accessibility. This scholarship supports active WordPress contributors who have never attended flagship WordCamps (Asia, US, or Europe) and require financial assistance. It prioritizes individuals from underrepresented demographics who are eager to use their WordCamp experience to strengthen their local WordPress communities in Asia.</p>\n\n\n\n<p>Applications for both scholarships are now open and will remain so until <strong>December 6, 2024</strong>.  If you meet the criteria, don’t miss the chance to apply. All applicants will be notified of their selection status by December 20, 2024.</p>\n\n\n\n<p> Also mark your calendars—the <a href=\"https://asia.wordcamp.org/2025/third-batch-of-ticket-drop-for-wordcamp-asia-2025/\">third batch of tickets </a>will drop on November 28 and 29, 2024.</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, 26 Nov 2024 17:58:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:92:\"WPTavern: WordPress.org Releases New ‘Secure Custom Fields’ Plugin With ACF Pro 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:30:\"https://wptavern.com/?p=180643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wordpress-org-releases-new-secure-custom-fields-plugin-with-acf-pro-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4628:\"<p>In the latest chapter of the ongoing dispute between Automattic and WP Engine, a new plugin “Secure Custom Fields” (<a href=\"https://wordpress.org/plugins/secure-custom-fields/\">https://wordpress.org/plugins/secure-custom-fields/</a>) has been added to the Plugin Repository by WordPress.org. This plugin has 90+ active installations and exhibits the features of ACF Pro plugin like repeater, flexible content, clone fields gallery, options pages, and ACF Blocks.</p>\n\n\n\n<p>Last month, WordPress.org took over WP Engine’s <a href=\"https://wptavern.com/acf-plugin-forked-to-secure-custom-fields-plugin\">ACF plugin</a>, citing security issues, and renamed it Secure Custom Fields (<a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">https://wordpress.org/plugins/advanced-custom-fields/</a>)&nbsp;</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/wordpressdotorg/#content-plugins\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdG5ci3dsl4eq2juxOPWSbe9sSpIu5BDegGunmxwkFHIs5gwsp7gxgDuyXaSkuNbfHsNTSLmQDpn3pDJ0jrP0sy9oZg06gtCOEIrR5MVz1ihTUnmVTAu5YoKmVt0qJWhSAuixgK2A?key=8Nc8VCiXWQM5XY5o8QO15iVY\" alt=\"\" /></a>\n\n\n\n<p>David McCan from WebTNG, has a detailed <a href=\"https://www.youtube.com/watch?v=nYHKSpfhrRE\">video</a> analyzing the new plugin. He shares that the update check and license check functionality from ACF Pro has been removed. He remarked “This seems like a classic case of a null plugin which is now being hosted in the WordPress plug-in directory. So I&#8217;m wondering if this is even a legal Fork. I&#8217;m not an expert in software licensing law but my understanding is you need to preserve the original copyright notices when you fork a plugin. it&#8217;s one of the requirements.”</p>\n\n\n\n<p>Prominent voices have weighed in on the controversy. Gergely Orosz of The Pragmatic Engineer newsletter <a href=\"https://x.com/GergelyOrosz/status/1860965378123239921\">tweeted</a>, “Automattic &#8211; the creator of WordPress, a company raising $950M in VC funding &#8211; took a paid WordPress plugin built and owned by another dev and re-published it, making it free. If you have a business selling a paid WP plugin: Automattic can null it, anytime. Another new low.”</p>\n\n\n\n<p>Duane Storey <a href=\"https://x.com/DuaneStorey/status/1861069617294172572\">shared</a> in X that ACF is now “an officially registered trademark of WP Engine.” He also <a href=\"https://x.com/DuaneStorey/status/1860443216367219060\">said</a>, &#8220;Sounds like what&#8217;s being put into the WordPress repository is basically a nulled version of ACF Pro without some of the copyrights.&nbsp; It&#8217;s clear Matt&#8217;s no longer a champion of any of the things he once said he was.&nbsp; I left a review. “</p>\n\n\n\n<p>Tim Brugman, a Full-Stack Developer, <a href=\"https://x.com/Brugman/status/1860672554966393291\">pointed out</a>, “A8c&#8217;s _new_ SCF plugin deactivates Advanced Custom Fields PRO when it is activated. An action that is not allowed by the dot org Plugin Handbook.”</p>\n\n\n\n<p>Automattician Brandon Kraft, who submitted the plugin, addressed the issue on <a href=\"https://religious.social/@kraft/113539565935870350\">Mastodon</a>, “The decisions on forking ACF or ACF Pro, etc., are above my paygrade, so to speak, but I didn&#8217;t refuse to work on it because I wanted to try to do it right/better.” He also shared, “I wasn&#8217;t involved in the forking the Pro code, but I just don&#8217;t see a notice. One item on my list is create a proper LICENSE.md that includes the GPL and ack past copyright…acknowledging it is built on existing work. If I missed the copyright already in the code, that&#8217;s an oversight on my part and not intentional.”</p>\n\n\n\n<p>The Repository <a href=\"https://www.therepository.email/wordpress-org-forks-acf-pro-in-unprecedented-move-against-wp-engine\">reported</a> that a member of the WordPress Plugin Review Team, speaking on the condition of anonymity, confirmed that after Kraft submitted the ACF Pro fork, it was approved by another Automattic employee, bypassing the Plugin Review Team’s usual processes and checks.</p>\n\n\n\n<p>The incident has sparked heated discussions on <a href=\"https://www.reddit.com/r/Wordpress/comments/1gy8bud/wordpressorg_has_apparently_released_secure/\">Reddit</a> too. While the majority is against WordPress.org’s action, some <a href=\"https://www.reddit.com/r/Wordpress/comments/1h05vfy/why_i_will_be_using_scf_instead_of_acf/\">support</a> getting the pro features for free.</p>\n\n\n\n<p>The preliminary injunction hearing for WP Engine vs Automattic is scheduled for later 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:\"Tue, 26 Nov 2024 17:32: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:7:\"Jyolsna\";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:49:\"BuddyPress: BuddyPress 14.3.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=335742\";s:7:\"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://buddypress.org/2024/11/buddypress-14-3-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2251:\"<p id=\"block-35e8c6a5-dc8c-4b4a-b459-aa739313f8ca\"><a href=\"https://downloads.wordpress.org/plugin/buddypress.14.3.1.zip\">BuddyPress 14.3.1</a> is now available. This is a maintenance release.</p>\n\n\n\n<p id=\"block-80a9aeaa-f502-4d3b-972e-0f6995994f31\">14.3.1 fixes two bugs:</p>\n\n\n\n<ul id=\"block-bb57f61f-d125-49f4-9fa1-955d2dab822f\" class=\"wp-block-list\">\n<li>WordPress 6.7 compatibility: WP 6.7 will throw notices for plugins that load their textdomain before &#8216;init&#8217; (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9247\">#9247</a>).</li>\n\n\n\n<li>BP Legacy Theme Pack: Make sure the <code>bp_heartbeat</code> property is included in the WP Heartbeat data object (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9248\">#9248</a>).</li>\n</ul>\n\n\n\n<p id=\"block-d8121097-c1de-4e92-9710-1673a94d4c59\">For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-14-3-1/\">14.3.1 changelog</a>.</p>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background no-border-radius wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.14.3.1.zip\">Get BuddyPress 14.3.1</a></div>\n</div>\n\n\n\n<p id=\"block-aa9a1610-e591-4dea-966f-0de3f7ded87c\">You can get the latest version by clicking on the above button, downloading it from the&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a>&nbsp;or checking it out from our&nbsp;<a href=\"https://buddypress.trac.wordpress.org/browser/branches/14.0\">Subversion repository.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-8935e1e5-ef63-42ee-8c08-67fad827159a\">Many thanks to our 14.3.1 contributors </h2>\n\n\n\n<p id=\"block-a8b36bfc-7855-4e99-ba54-508a3776b715\"><a href=\"https://profiles.wordpress.org/dreampixel\">dreampixel</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">boonebgorges</a>, <a href=\"https://profiles.wordpress.org/emaralive\">emaralive</a> &amp; <a href=\"https://profiles.wordpress.org/imath/\">imath</a>.</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:\"Tue, 26 Nov 2024 17:09: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:12:\"David Cavins\";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:25:\"Matt: Carmack &amp; Rogan\";s:7:\"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:23:\"https://ma.tt/?p=131088\";s:7:\"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:36:\"https://ma.tt/2024/11/carmack-rogan/\";s: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:801:\"<p>I guess something has changed with the Joe Rogan / Spotify deal and now all the old episodes are on YouTube again, which means the gems from the archives can now pop up. I <a href=\"https://x.com/id_aa_carmack/status/1861171748659515900?s=46\">was alerted</a> to this conversation between Joe Rogan and John Carmack, and it&#8217;s pure gold. I know I&#8217;m five years late in watching this, but that makes it even better because it&#8217;s so prescient. Joe asks amazing, in-depth questions that reveal deep domain knowledge, and it sparks John Carmack to make observations that are quite wise. No filler. Now, with the benefit of hindsight, we can see both Joe and John being absolutely right. This is one of my favorite podcast episodes ever.</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:\"Tue, 26 Nov 2024 12:17:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:125:\"Gutenberg Times: Gutenberg Changelog #111 – Gutenberg 19.6 and 19.7, Developer Hours, Playground, and Collaborative Editing\";s:7:\"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=31002\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-111-developer-hours-playground-and-collaborative-editing/\";s: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:67184:\"<p>In this episode, Birgit Pauli-Haack and Anne McCarthy discuss Gutenberg 19.6 and 19.7, Developer Hours, Playground, and Collaborative Editing</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-111-developer-hours-playground-and-collaborative-editing/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-111-developer-hours-playground-and-collaborative-editing/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/11/21/wordpress-6-8-call-for-volunteers/\">WordPress 6.8 Call for Volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">Proposal: Major releases for 2025</a></li>\n\n\n\n<li><a href=\"https://youtu.be/fs-aawt3eNc\">Exploring the Block Bindings API in WordPress 6.7</a></li>\n\n\n\n<li>December 3rd 16:00 UTC&nbsp; <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/304668126\">Improve your workflows with WordPress development tools</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2024/11/10/whats-new-for-developers-november-2024/\">What’s new for developers? (November 2024)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/snippets/how-to-disable-heading-levels-in-the-editor/\">Snippet: How to disable heading levels in the Editor</a> by Nick Diego</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/snippets/conditionally-unregister-patterns/\">Snippet: Conditionally unregister patterns</a> by Justin Tadlock</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.7 and 6.7.1</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2024/11/rollins/\">WordPress 6.7 “Rollins”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/11/wordpress-6-7-1-maintenance-release/\">WordPress 6.7.1 Maintenance Release</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">Field guide 6.7</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\">WordPress 6.7 Source of Truth</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg plugin releases</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/11/06/whats-new-in-gutenberg-15-9-31-may-2-2/\">What’s new in Gutenberg 19.6? (6 Nov)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/\">What’s new in Gutenberg 19.7? (20 November)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s discussed and in the works</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/11/21/update-on-phase-3-collaboration-efforts/\">Update on Phase 3: Collaboration efforts</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/discussions/65012#discussioncomment-11075617\">Real time collaboration Update</a> (GitHub)</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/60622\">First and experimental version for inline commenting</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/66377\">Inline Commenting: Next iteration</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<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>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Hello, and welcome to our 111th episode of the Gutenberg Changelog podcast. In today&#8217;s episode we&#8217;ll talk about Gutenberg 19.6, 19.7, developer hours, playground and collaborative editing. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor for the WordPress Open Source project sponsored by Automattic. With me today is the brilliant Anne McCarthy, product manager for WordPress and author of the Source of Truth posts that she&#8217;s keeping for almost over a year. No, two years maybe. Forgot. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Might be almost.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hi, Anne.</p>\n\n\n\n<p><em>Anne McCarthy</em>: It&#8217;s been a long time. Yeah. Hello. Thank you so much for having me. And also I feel like it&#8217;s like a lucky, I don&#8217;t know, 1, 1, 1, 1. I&#8217;m like, I&#8217;m into that 111. That feels good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah. I can&#8217;t believe it&#8217;s over 100 episodes, yeah.</p>\n\n\n\n<p><em>Anne McCarthy: </em>That&#8217;s amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s amazing. All the co-hosts that I had and special guests, it was really, it&#8217;s quite a trip. And I&#8217;m still excited and people are listening to it even more. And so, this is my shout-out for all the new listeners on the podcast. And if you want to, please, please leave a review, whatever you feel about the show, it definitely helps with the distributions. Anne, while 6.7 came out, you did a masterwork of Source of Truth. Can you pick up two features that you are most excited about from this release?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, yeah, that&#8217;s tough. Yeah, two features. I am very biased by the things that improve the experience and the feedback that we heard back when I was running the FSC outreach program. That&#8217;s something that I&#8217;m always thinking about. And so for me, I would pull out, zoom out. I think zooming out and being able to build with patterns, one of the big issues that we used to have back in the day was that it was hard to find the discoverability of patterns and to work with pattern&#8217;s a lot easier.</p>\n\n\n\n<p>And I think the potential of zoom out, I think there&#8217;s a lot of things that we need to figure out still. But I think the potential of zoom out and the ability to zoom out and focus on the sections of your site, to get out the granular details is a huge win and something that can be built upon and used contextually right at the moment when you need it. I think that&#8217;s the part that we need to start sorting through is do we now expose this when it comes to adding a new page or adding a new template? Because I know some folks really don&#8217;t like that pop up of starter patterns.</p>\n\n\n\n<p>But I&#8217;m always fascinated by how we can make the pattern experience easier and make the site building experience for folks who need it a bit more approachable and more section by section. I&#8217;m really, really excited about it. I just built a site for someone recently, a podcast I really like. And that&#8217;s one of the things I was most excited to show her is like, &#8220;Hey, if you want to add future stuff, look, you can just, boom, sections. Add this in, you can just add these patterns.&#8221; And I think it makes the user experience a lot better.</p>\n\n\n\n<p>The other one I&#8217;ll mention is more technical, but something that also has been a long-standing point of feedback back. Back when I was doing developer relations, developer advocacy, the template registration API, I remember early on so many plugin authors being like, &#8220;How do we adopt block templates? How does this work? How do we register things?&#8221;</p>\n\n\n\n<p>And I would send very niche GitHub links to how other folks had done it. And this registration API just eases all of that. And I&#8217;m really excited for folks to increase the adoption of using block themes and block templates and embracing a block world. And I am thrilled that that has landed in 6.7. And I hope more and more folks can take advantage of it. Those are the two very different, but I would say those are the two that make me excited.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Excellent. Excellent. Yeah, we talked about 6.7 with other hosts here before because it&#8217;s an eight to nine weeks release cycle. In between we had our episodes and we looked at that. But we are looking to the future. We have right now on the Make Core blog, we have two posts. One is the release schedule proposal by Héctor Prieto for next year and I can&#8217;t believe we are going to have a 7.0 release in 2025.</p>\n\n\n\n<p>6.8 is proposed to be scheduled for April 15th, 6.9 for August 5th and 7.0 for November 11. And it&#8217;s all around the flagship word camps, around some holidays and way before Black Friday the new version is out. Even those who experienced a lot of traffic for the last two months of the year, they can do it with a new version.</p>\n\n\n\n<p>Also for WordPress 6.8, the call for volunteers is out, so if you want to contribute to a release, it is definitely a certain advanced level of contributing. But what you can do, even if you don&#8217;t have experience, you can shadow people that are on the release. To maybe do that and then start working in the release squad for 6.9. Definitely try and figure that out if you want to contribute.</p>\n\n\n\n<p>Otherwise, there are multiple other ways to contribute to WordPress course. We all have done it. We all did some documentation changes, we did some reports on the Gutenberg and the track tickets we tested with that. And testing has become really fun now with Playground. Yeah, it&#8217;s really interesting to see how that sped up so much. Any thoughts about that?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Playground</h3>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah, I am super&#8230; It&#8217;s so interesting when I had a call this week with some of the WordPress YouTubers, an AMA with Matías Ventura, the project architects of Gutenberg. And Playground is something I&#8217;m so fascinated by because it really does make it immediately accessible. You immediately can have your hands on it and it works well.</p>\n\n\n\n<p>And Playground, one of the things I love about the Playground team, and this is something I think that&#8217;s really important when you&#8217;re using a new tech like that, they want to hear what would make your experience better, easier, if you run into a bug, all that sort of stuff. You&#8217;re getting&#8230; We report stuff all the time. I feel like that&#8217;s one of the things that I really love about these efforts right now in the WordPress project is there&#8217;s so much momentum and so much care and thought being put into those tools.</p>\n\n\n\n<p>And so if you haven&#8217;t given it a try, please give it a try. If you&#8217;ve run into an issue, please, there&#8217;s a GitHub repo where you can open issues. But I&#8217;m really hoping we can get more educators and influencers using it to help bring WordPress to more people. If you haven&#8217;t been paying attention to WordPress Playground, I definitely encourage you to do so. And it&#8217;s a great way to test things early. As Birgit was saying, testing is a lot easier and more approachable thanks to a lot of the stuff that&#8217;s being done there.</p>\n\n\n\n<p>I always find it a great way to, whenever I&#8217;m doing the Source of Truth, I&#8217;m spinning up WordPress Playground constantly. I think there&#8217;s some stat where I think 700,000 people have used WordPress Playground. I&#8217;m probably 50,000 of those. Because I feel like I&#8217;m using it probably on a daily basis, so if that&#8217;s helpful insight for&#8230; I truly probably use it on a daily basis. If you aren&#8217;t, it&#8217;s definitely something to add to your list of tools.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Definitely. Yeah. If you want to learn more about Playground, we are planning some Hallway Hangouts. Hallway Hangouts are informal discussions with contributors on their new features and what they&#8217;re working on to give a little bit feedback but also to show off a few things to trigger some creativity.</p>\n\n\n\n<p>And there&#8217;s Ajit Bohra who is a early adopter of Gutenberg as well as a Gutenberg contributor, has built a blueprint builder. Blueprints are the configuration files for Playground. And he made this into a block editor feature and had been working on it. And so next week, February&#8230; February, how did this come in? No, it&#8217;s Friday, not February, it&#8217;s Friday, November 29th at 14:00 UTC we are in a Playground Hallway Hangout with Ajit Bohra. And he shows off what he has done, what his vision is, what the team is going to think about. Adam Zielinski who was the sole developer for a year now has the whole team behind Playground will also be there.</p>\n\n\n\n<p>And the second event is with Tammie Lister and discussing how agencies can use Playground for their product, in their client work and all that. That&#8217;s December 6th, also 14:00. These are save the date for you right now. We are publishing that on the Make Blog on Playground before with all the Zoom links, but that&#8217;s just to get it out before that happens. And you know about it.</p>\n\n\n\n<p>There&#8217;s also a developer hour coming up on December 17th that&#8217;s also on Playground and watch the announcement on meetup.com. It is not quite clear what the topic is about, but it&#8217;s definitely on the roster. December 17th for 16:00 UTC. And this week was a developer hangout. No, next week, I&#8217;m sorry. I&#8217;m getting my weeks mixed up.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy:</em> So much is happening. I don&#8217;t blame you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. December 3rd there is a 16:00 at 16:00 UTC. Ryan Welcher will talk about improving your workflows with WordPress development tools. It&#8217;s about extensions, it&#8217;s about create block, it&#8217;s about create block theme, it&#8217;s about webpack and all the different things that can make your life easier. That&#8217;s also sniffers for coding standards and all that. You will learn how to use them and how to make it easier for you to develop things.</p>\n\n\n\n<p>This week what I wanted to say was the recording of the developer hours is available on Exploring the Block Bindings API from WordPress 6.7 with Justin Tadlock and Nick Diego. They just had the block bindings actually my favorite thing for 6.7 that it&#8217;s in the UI and you can connect your custom fields with the blocks and have an automatic display on the front end that&#8217;s just phenomenal and is really magic for me. But that&#8217;s what you can see in that recording.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions<strong> </strong>and Developer Hours<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>All right. Now the announcements. The developer blog has some new things there since we last talked about it. Of course, the What&#8217;s New for Developers comes out every 10th of the month. And that covers a lot of things from 6.7 but also from the 19.6 release that we are going to talk about today. And we have a new post format on the developer blog called Snippet, which is a small explanation of a problem solution for one task and then the code snippet with it.</p>\n\n\n\n<p>There are two snippets there right now. One is how to disable heading levels in the editor. That&#8217;s about a feature that came with 6.7 as well is different heading levels and how you can control that. When you have your editors and they are not supposed to use H1s, you can disable that from the drop-down list. And you can also say, &#8220;Okay, we don&#8217;t do H5 and we don&#8217;t do H6,&#8221; and disable that. And the snippet shows you how to do that very easily with BHP.</p>\n\n\n\n<p>The other one is to conditionally unregistered patterns. That&#8217;s important for theme developers who have patterns for plugins that might not be installed yet. You don&#8217;t want to show the pattern because it runs into a problem. Now you know how to conditionally unregister those patterns and both by Justin Tadlock. All right. That&#8217;s from the developer hours to developer news. And from the upcoming events, the Hallway Hangouts and developer hours.</p>\n\n\n\n<p><em>Anne McCarthy:</em> I love all the formats that are happening. There&#8217;s so many learning opportunities and I really liked the new snippet approach. I saw that coming up and I think that&#8217;s a really neat way for folks to get bite-size&#8230; The tutorials are so cool. I followed some of them to learn. And the snippets I think really round it out. Kudos all around. I think it&#8217;s just awesome how much&#8230; I&#8217;ve never&#8230; In my opinion years ago, I think this is the dream. If we had to be able to see how much stuff was going on, it&#8217;s just amazing how many resources there are and ways to either watch live or watch later and learn with other people. It&#8217;s really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And we will also bring the developer hours recordings into the developer blog.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Nice.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s on my list for the last thing that I&#8217;m going to do this year is to create the custom post type and figure out how we lay it out and what additional information is going to be around the embedded videos. But yeah, it&#8217;s such a great tool. And we are all working towards the extenders who try to use the new APIs, be it interactivity API, the block bindings or even the block hooks that came out in 6.6 and 6.5. There&#8217;s always something&#8230; And especially also using block themes with the style variations. And so the developer blog is now a&#8230; It&#8217;s been around two years this month.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Wow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And we have about 50 posts. And this definitely enriches it because not everybody has time to read 3,000-word tutorials when they&#8217;re looking for something. Yeah. Yeah. And if you have any ideas, dear listeners, about what should be written about, you can always come in into the core-dev-blog channel in WP Slack and the Make Slack and figure out how that is. There&#8217;s on the website there&#8217;s also how to contribute, how you go from idea to post if you want to write for it. Yeah, definitely. You can also subscribe to it so you never miss a post again with <a href=\"http://developer.wordpress.org/news/subscribe\">developer.wordpress.org/news/subscribe</a> and put in your email address and you get notification.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; WordPress 6.7 and 6.7.1<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>That brings us to what&#8217;s released. And we talked about WordPress 6.7. We have in the show notes for you the field guide 6.7 and also Anne McCarthy&#8217;s WordPress 6.7 Source of Truth published on the Gutenberg Times. But I mention it also because this week WordPress 6.7.1 was released and it fixed a few bugs that okay, those needed to be really done fast because there was a fatal error or the editor didn&#8217;t work right when you had uncategorized pattern browsing or there was a TypeScript error on the categories for theme patterns.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: Was an auto-size issue with lazy loading and that was a big one that we saw. I saw a lot of reports of across many different areas. And so that will be fixed and yeah, I&#8217;m excited. I&#8217;m really kudos to everyone who worked on that. It&#8217;s a huge&#8230; It&#8217;s one thing you race to the finish line to get the big major release out and then to do another point release. It&#8217;s just really impressive and a lot of effort from a lot of folks in the community.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And that&#8217;s just nine days after the release of 6.7, so that&#8217;s really kudos to the release leads. There was Jonathan Desrosiers and Carlos Bravo who pushed this all over the finish line with the contributors that actually fixed the bugs. But now some of them is in the upcoming Gutenberg releases we&#8217;re going to talk about.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 19.6</h3>\n\n\n\n<p>Which brings us to Gutenberg 19.6. 194 PRs with 57 contributors, eight were first timers. Kudos to them getting their badges for core contributing there as well. It has 37 enhancement, 65 bug fixes was the one that was released right before release candidate to get all the bugs in. And the rest is always on documentation, tooling, code, quality and components. Let&#8217;s dive in. What&#8217;s first on the list?&nbsp;</p>\n\n\n\n<p>Oh, yeah, there are two things that I want to talk about for the developers. The great block scaffolding tool has a new flag. It&#8217;s called Dash dash target dir, to allow the tool to also target where the scaffold should be placed.</p>\n\n\n\n<p>There were some conventions that you had to call the command line outside the plugins in the plugins repo to get a next folder into the repo to where your blocks are created. And now you are in more control of where you can place the new block or a new series of blocks with a scaffolding tool. That was a major request from developers that that might be added.</p>\n\n\n\n<p>And the other one is with wp-scripts, you can now also do a root folder argument for the plugin zip command, so you get your plugins packaged. And that&#8217;s in the right folder or from the right folder. That&#8217;s better there. I want to point that out for the developers on the show using the tools that are built into Gutenberg. Do you want to take the Block Libraries B list?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, let&#8217;s run through that. I love block library updates because it&#8217;s amazing how just slowly chipping away at stuff, whenever I&#8217;m doing a Source of Truth, I always find there&#8217;s a beautiful set of things that have just big and small tools like 6.7 had shadow support for the group block, which folks really wanted. And it&#8217;s just amazing how the improvements continue to come.</p>\n\n\n\n<p>We have a transformation from separator to spacer blocks. And that just allows whenever you&#8217;re using the transform menu to easily switch between things. I think that&#8217;s a great one. I think it makes a lot of sense. I actually am really&#8230; Whenever I was looking for the changelog for this, I was excited to see it. I ran into that maybe three weeks ago and so it&#8217;s like, &#8220;Oh, yeah, this is an obvious one to have.</p>\n\n\n\n<p>But adding the lightbox option in the gallery block link control. I actually used this. When did I write a blog post? Three days ago? Whenever you add a gallery block before you had to individually select each image block within it to add that lightbox and the lightbox is when the image takes over the screen. And now there&#8217;s just a control at the top level. When you&#8217;re selecting the gallery block, go into the block toolbar, hit the link, and you can easily just have it applied to all the images. Which yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Such a relief.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, it&#8217;s a relief that it&#8217;s perfect&#8230; Yeah, it&#8217;s like, &#8220;Oh, this makes perfect sense. Why didn&#8217;t we have this before? I love when that sort of stuff comes out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Not everyone has just three pictures in the gallery. Some people have 20 pictures in the gallery. And then it&#8217;s really…</p>\n\n\n\n<p><em>Anne McCarthy:</em> And it&#8217;s funny. Yeah, I was like, &#8220;When did we add this?&#8221; Because I literally&#8230; Yeah, that&#8217;s something I cannot tell you how many times I have gone through and manually added that. Or I&#8217;ll miss one image by accident and not realize it. This just makes it so much easier for the archives. There is now border block support, which is great for block theme authors. Border support is also added to comments. Just again, more styling options.</p>\n\n\n\n<p>The cover block has image resolution options now, which is just again, more control to more having commonality between every image block. And this is something I think about a lot whenever you&#8217;re working with blocks that interact with media is like, how can we make it as similar as possible When you&#8217;re working with image things? Because that is an inconsistency that it wears on you when you&#8217;re using a block and it&#8217;s similar, you&#8217;re like, &#8220;I&#8217;m just using an image. Why is it different if I&#8217;m using the cover block or the image or the gallery block?&#8221; We should have a lot of congruence there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Totally.</p>\n\n\n\n<p><em>Anne McCarthy:</em> And so it&#8217;s neat to see that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah. Love it.</p>\n\n\n\n<p><em>Anne McCarthy:</em> And then the HTML block forces the HTML preview when you&#8217;re in view mode, which I actually need to look at this and make sure I&#8217;m going to get this right.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The view and design view, yeah, the edit view, that changes. I think there&#8217;s a writing, write mode coming that I have to dive into because the change was edit and view and now it&#8217;s write and design. And I need to figure out what the differences are.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Oh yeah, if you ever offline, want to talk about that, I can do a deep dive about write mode. I&#8217;ve been up in there opening a lot of issues around that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Hallway hangout about it.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yes, I think that&#8217;d be really smart mode for any folks who have blocks bundled in their plugins, something to pay attention to. And there&#8217;s a great tutorial that I think Nick Diego just did around adopting your blocks to content only that you can find the developer blog. I&#8217;m pretty sure that&#8217;s live. I saw a draft and now I&#8217;m like, I&#8217;m pretty sure I saw it live.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s live. It&#8217;s live on the developer blog.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Okay. Cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh. And I&#8217;ll share the link then in the show notes. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The next one is that we have a&#8230; Oh, your favorite feature. The zoom out note now has a keyboard shortcut to open up the editor of being available in the editor. You can zoom out per keyboard and you don&#8217;t have to look for that little icon there. And there&#8217;s an iterated zoom out shuffle into a more visual control. What does that entail?</p>\n\n\n\n<p><em>Anne McCarthy:</em> It&#8217;s cool. I can talk about that a little bit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, please.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Before whenever you were zoomed out and looking at the patterns, there was this shuffle option. And while it was nice to just quickly switch through it, it shuffles through patterns of the same category. The issue is you&#8217;re not seeing visually what&#8217;s coming next and you can&#8217;t get at a glance, &#8220;I want to switch to this.&#8221; And so it changes it from this shuffle option to this change design option. You&#8217;re also a bit clearer on what it&#8217;s doing.</p>\n\n\n\n<p>And it gives you this nice little preview of, okay, change design, and then look at a list of the patterns related to this. And then you can visually select what you want to change it to rather than just a full blown shuffle, like what&#8217;s going to happen when I click this? It allows a bit more control and predictability to the experience. I was really excited to see this.</p>\n\n\n\n<p>I have noticed I need to test this more as part of the fun of things when I was working on a site yesterday, that there&#8217;s a little bit of lag. Definitely keep&#8230; This is one of those areas that when we talk about zoom out is a great initial feature. I&#8217;m really excited to keep iterating to make it more useful. No, feedback is very much welcome there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The data views is the way how you in the site editor, you can navigate all through all the templates and all the pages and patterns. And it&#8217;s also the predecessor for the new admin design. But that has now in the templates, it hides the media field in the list view, which makes it a little bit more dense and more streamlined. Yeah. The next one is, I really love that, the style book now has a color tab where you can see all the color variations. This additional stuff, we&#8217;re going to talk about it in 19.7. But the style book is coming really to its better use now that we have all the different features like the style variations, block variations and that. Do you want to do the next one?</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah. Real time collaboration, this is relating to inline commenting specifically. There was a lot of work being done around inline commenting that I think we&#8217;ll get into later. But basically comments were disabled for published posts for now. You can imagine this is basically to narrow the scope.</p>\n\n\n\n<p>While we&#8217;re trying to get this feature in place to have it be ready for future release and maybe a bit beta form, there&#8217;s some just hard decisions that be made to narrow the scope so we&#8217;re not just completely exploding the scope and then something doesn&#8217;t work super well. The decision was made for post after they&#8217;ve been published to not have the ability to add comments.</p>\n\n\n\n<p>And we actually got great feedback from some folks in the enterprise space who there&#8217;s a channel for real time collaboration. I posted it about online commenting. And some of the enterprise folks are hanging out there and it was great. One of them actually chimed in on the main iteration issue for what&#8217;s coming next with online commenting and mentioned, &#8220;Hey, that thing you just disabled, we actually want that.&#8221; I think that&#8217;s part of the beauty of keeping folks up to date and having that tight feedback loop.</p>\n\n\n\n<p>The second that was disabled, someone was like, &#8220;Can you revert that? I actually want that.&#8221; And it&#8217;s like, &#8220;Yes, yes, yes. Eventually we will revert. This is just for now narrowing scope.&#8221; That&#8217;s what you can get from that release. But that&#8217;s part of the beauty. I wanted to mention the feedback there because I think it&#8217;s really cool that folks are paying such close attention.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Behind the scenes stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think I was one of the people who said, &#8220;I want this back.&#8221;</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yes. Yeah, yeah, you comment on it too. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. But the inline commenting when you get&#8230; It&#8217;s an experiment still in Gutenberg, so you need to enable it so you can see it. But then it&#8217;s really good to have the&#8230; Because you can comment on each block and you can have replies. And it&#8217;s a great way to collaborate on things and have one editor there and have everybody else comment on a picture or on a block or on a quote or on a design. If you use the design tools and to just have it right there.</p>\n\n\n\n<p>And when you open up a post, you see the comments there, you can open it up, you can even pin it to your sidebar. It&#8217;s a great feature to test out and comment on. And when you have a few minutes in the afternoon or something like that, I really enjoyed it. And to see what&#8217;s coming next in the experiments, there are a lot of experiments in Gutenberg.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah. I know we need to groom that list. I&#8217;m trying to wait for the right time to do a make test post asking for feedback. If you want to wait for more curated specific, &#8220;I can look at this post and follow these instructions and click on this link and I&#8217;ll open a WordPress Playground,&#8221; you can wait for that too. Because that is something&#8230; I just am trying to wait for us to fix some of the obvious stuff before asking people for their time. That&#8217;s something I&#8217;m always mindful of is the right time to bring folks in where it&#8217;s the most impactful for bringing feedback.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I have to tell you, I love your test instructions. Every time something comes out, it&#8217;s such a great way to explore a new feature guided. But then all of a sudden, now that you know how it works, you can create an opinion and I always have an opinion. I travel with it, but then you also can pinpoint it to a certain instruction as well. It&#8217;s a guided testing instruction. And also exploring new features. You do fantastic work with that and I&#8217;m looking forward to some of the new ones that come out.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Thank you. Yeah, that&#8217;s helpful to hear. Because I want it to be that. I want it to be both exploration and feedback. We need to be veering people into what&#8217;s coming next so they can have that opinion that you just described. Yeah, that&#8217;s really cool to hear.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. The next one was on a backport that actually made it into 6.7. It was an improvement to get the post format in the query loop. And that is something that if your theme supports post formats, there is a way to do archive pages and all that. It&#8217;s not 100% seamless. There is some thinking through it from the developer part when you build a theme, but having that is definitely helpful so you don&#8217;t have to write the query yourself. There is a&#8230; I am a little bit&#8230; I don&#8217;t remember.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">New APIs</h3>\n\n\n\n<p><em>Anne McCarthy:</em> I know this preview, I was like, &#8220;I can talk about this a little bit.&#8221; But yeah, basically, there&#8217;s, yeah, a new API is preview mode flag. And this is something that it looks like it&#8217;s been three years looking at the PR since this flag was there to basically allow, to indicate if a block is rendered as part of a blocks list, a block preview, a pattern preview, et cetera. And it&#8217;s a way, at this point we need to make it stable. And this came in again from feedback. What I really like to call out whenever this is influenced by feedback.</p>\n\n\n\n<p>And this came up with in Jetpack where Riad was helping someone on the Jetpack team when they were asking questions. And he was like, &#8220;We should probably stabilize this. It&#8217;s been three years now. This isn&#8217;t actually unstable, but if we can render a placeholder for this, let&#8217;s do it.&#8221; And so this is really helpful and it&#8217;s just another signal. We do want to be careful about what we list is stabilized. And so this is one of those examples where it&#8217;s good to have just another tool in the toolbox to stabilize it for plugin authors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, because a lot of plugin authors are a little hesitant to use marked unstable or marked experimental flags features. And so adoption is really slow, although the things have been used in core or with other plugins quite a bit already and are stable, but they haven&#8217;t been made stable. And I know for the next release of 6.8, there&#8217;s a huge push on that for some of the design tools like the fonts and border controls and all that to make that what&#8217;s experimental to be stable and move that forward. It&#8217;s really cool.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>I think we are through the enhancement on 19.6, but there are a few bug fixes I wanted to point out. The first one is the self-nesting and circular nesting block fix. Up until that fix, it was really possible to have a block that has inner blocks to make it an inner block of itself. It&#8217;s like an Inception, if you ever saw that movie. It really confused the block and what to do with it. And you could also nest blocks that are the same nesting in multiple times. It&#8217;s like the infinite mirror when you go in zoom and you share a screen and everybody can&#8230; You see yourself multiple times, but that is definitely fixed. Or well, if it&#8217;s not, please let us know.</p>\n\n\n\n<p>And the other part that I wanted to shout out is that there is the link shortcut only to be triggered when there is a text selection. And that has to do with the two features that are triggered by the same shortcut. And depending on which context you are, it gives you the right tool. Control K opens up the command palette where you can then just look for a new open site editor or create a new page. You can do this in the command palette, but it also lets you add a link to the canvas if you&#8217;re in there.</p>\n\n\n\n<p>And if you are having a text selected, you could trigger that, creating a link with control K, but you wouldn&#8217;t be able to trigger the command palette. And if nothing is selected, that&#8217;s what you probably wanted. There were a few people, there&#8217;s a whole discussion about it in that PR about maybe changing the shortcut, but it&#8217;s the internet and the software developers have used the same shortcut for multiple things.</p>\n\n\n\n<p>It&#8217;s, yeah, exercise. People know about it, and here it comes together quite interestingly enough. But, well, I don&#8217;t know about you, but if I have a text selected, I don&#8217;t use Control K. And I just do copy-paste and have the link underneath my text selection. It doesn&#8217;t bother me, but it would&#8217;ve bothered me if Control K gives me the control panel, it doesn&#8217;t give me the command palette and rather opens the link feature there. I think it was a good decision. Riad made the pragmatic decision.</p>\n\n\n\n<p><em>Anne McCarthy:</em> I think it was a really good call because this is definitely, I have found it to be incredibly frustrating with the command pilot. And I think it has impacted the experience of using that and the likelihood of people using it in a way that it&#8217;s just not predictable. I think this will&#8230; I really hope it&#8217;s a meaningful improvement and it seems like it is based on&#8230; I actually helped test this at one point and just forgot to leave feedback. But yeah, I&#8217;m excited to see this in place and hope it helps.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, it definitely does.</p>\n\n\n\n<p><em>Anne McCarthy:</em> It&#8217;s a great call out. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I wanted to let everybody know that command palette, control K is a shortcut to get to you fast. And I think that&#8217;s it. Yeah, that&#8217;s pretty much what I wanted to talk about in Gutenberg 19.6. And we go right into 19.7.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Let&#8217;s do it.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 19.7</h3>\n\n\n\n<p>Birgit Pauli-Haack: Let&#8217;s do it. It&#8217;s 148 PR. Is not as much as 19.6, but that was with 46 contributors and six of them were first timers. The release had 26 enhancements and 49 bug fixes. Bug fixes are a big, big piece of every release. And of course, I have in the show notes both the release posts and we can go into the enhancement. Do you want to start us out?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah, I would love to. Now in the preview dropdown, the device preview dropdown, there is an option to show template. And before this was available in the setting sidebar, but it wasn&#8217;t super discoverable. And so this is just adding it there as well. Whenever you want to actually see a template preview, this option is now there whenever you&#8217;re trying to review your content.</p>\n\n\n\n<p>And I think this is one of those things that again, I am very curious to see how the feedback lands and how folks feel about it. If it ends up making sense to folks. We&#8217;ve added various things into that device preview dropdown. Including zoom out originally was thought of as being in the device preview and that was eventually moved. And I think this makes more sense conceptually. I was against zoom out being there, but I think having a template preview is a neat way to have a what you see is what you get. You may not need to go see the post in a new tab if you can just toggle this on and off to show or hide template.</p>\n\n\n\n<p>And I don&#8217;t know, for me personally, whenever I&#8217;m writing or creating stuff, I often start with having the template gone. I don&#8217;t want to see it. It&#8217;s a distraction. And then whenever I&#8217;m ready to see, &#8220;Okay, how does this actually look in context?&#8221; You can toggle that on for show template. And I think it&#8217;s a great small enhancement that can help with usability and curious to see how people like it and use it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely. Yeah, and I&#8217;m really curious what people are going to do with the&#8230; Because the preview dropdown has been opened. There&#8217;s an API now for plugin developers to put it in. And I saw people put in view this in your newsletter because they use the block editor for the newsletter. And I also have seen it in I think blog visibility, what&#8217;s it on the front end when you have&#8230; The plugin block visibility by Nick Diego has an option to see it what is it that I showed. Where you can show and hide things. And he was able to manage the canvas to actually show and hide things quite easily. Yeah. It was really interesting what plugin developers are going to do.</p>\n\n\n\n<p><em>Anne McCarthy: </em>Yeah, I agree. I think it&#8217;s the preview options API, I just was looking it up to make sure I had the name and was available in 6.7. I think it&#8217;s a pretty cool&#8230; The accessibility there feels pretty powerful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely. Yeah. And this is, the next thing is more like a PSA so to speak, that the view external link that is in the toolbar on top is actually now at the end of the editor header controls. It got moved, so don&#8217;t be confused. It&#8217;s now on its final place for now until we move it again. But yeah, I think the zoom out button or link made us think a little bit more about what is the order of those things. And it would really help to get some feedback on it. What do you think about it? Yeah, just don&#8217;t miss it. It&#8217;s there. You just need to look a little left on it. And the next one is, can you talk about that?</p>\n\n\n\n<p><em>Anne McCarthy:</em> Oh, yeah, I would love to. There&#8217;s situations where there&#8217;s a post, you&#8217;re writing a post, you have a number of images in the post. And let&#8217;s say you want a quicker way to just set a featured image. There&#8217;s now an option where if no featured image is set, you can set any image to be the featured image.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s cool.</p>\n\n\n\n<p><em>Anne McCarthy: </em>Yeah, it&#8217;s really cool and it comes from this desire to make it easier for folks whenever they&#8217;re in the flow of writing things. And as we know, images are really powerful. If you switch themes and you don&#8217;t have a bunch of featured images set, it can be a pain. There&#8217;s a lot of broader thinking around this. This is just an initial iteration to make it really easy to make sure to just set an image as a featured image.</p>\n\n\n\n<p>And so, I definitely plan on using this. Because I always am reusing&#8230; I&#8217;ll post a blog post, I have a gallery of images, I love taking photos. And then I have to go again and select the featured image and go through the media library and all sorts of stuff. And now instead I can just be like that one, I want that one as a featured image. Through that, set as featured image. And so it just uses the same set as featured image property as it&#8217;s used elsewhere in the system. It&#8217;s also really cool use case with that. I&#8217;m excited to see it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I have two questions about it. One is if I set it as a featured image, then I can take it out of the post because it&#8217;s a different storage? Yes. Okay.</p>\n\n\n\n<p><em>Anne McCarthy:</em> I think so. Yeah. I think it&#8217;s basically it&#8217;s an attribute that&#8217;s set. And so, if it doesn&#8217;t have a featured image, it&#8217;ll be set as a featured image of the post. And you can also, if you override that and set the featured image, I&#8217;m pretty sure then that will be the priority is whatever is set as a featured image in that flow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Most of the time or sometimes the theme supports featured image in a blog post. Then if you take an image that&#8217;s in the canvas as a featured image and it still stays in the post, then all of a sudden you have a double in there. It depends on how the theme works or how you set up your templates for the single post. If that&#8217;s a trained method now for you, yeah, you probably want to switch off the display of the featured image on the single post.</p>\n\n\n\n<p><em>Anne McCarthy: </em>Yeah. Because that is such a&#8230; I right now have a theme that has&#8230; It does duplicate and I just decide to accept it. And I often, because block themes are so powerful, I&#8217;ll just go on a site editor and make sure that it looks good or looks separate and doesn&#8217;t feel too, I don&#8217;t know, annoying, where it&#8217;s like the images are just right after each other. And that&#8217;s one of the cool things with block themes is you can always just edit it or straight up remove it from your template if you want.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s fascinating what you can do, what you couldn&#8217;t do before. Yeah, yeah. The next two are other ones of getting more support for blocks. That&#8217;s the post content. Block now has border support and spacing support. And the details block also got anchor support. You could have the header of the details block be an anchor so you can link to it, which is very powerful.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy:</em> Oh, this is a big one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. Can I talk about it? I&#8217;m obsessed with.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, talk about it.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Okay. I&#8217;m going to tell the story of the background of this. When the site editor first was launched and people would drop into the editor, the site editor and start building, they would stumble on this style section. And a lot of folks thought that they were just styling their template. Whatever they were looking at, it was like, &#8220;Oh, cool, I&#8217;m styling just what I&#8217;m seeing.&#8221; And it&#8217;s actually styling everything.</p>\n\n\n\n<p>The style section when you&#8217;re in the editor is styling everything, whether you can see it or not. And so this was almost like an information architecture problem, a UX problem. And to help start to alleviate this and to communicate the global nature, the same styles experience you get when you&#8217;re in the editor is being moved to the top level in that dark sidebar. Designers call that the frame. The frame of the experience or that dark sidebar before you get into the canvas and the editor.</p>\n\n\n\n<p>It&#8217;s being moved to the top level. Whenever you first enter the site editor, you&#8217;ll see those same sections that you&#8217;re used to seeing. And when you hit styles, it&#8217;ll actually bring you in using data views. This great view of all your styles experience that you would expect whenever you&#8217;re actually in the editing experience. And the hope is that this will allow folks to understand that it&#8217;s like you&#8217;re editing everything. And in line with the other changes were done to allow you to toggle between the style book and previewing your site. And so, I think it&#8217;s a really exciting way to see when you first are landing there. I&#8217;m pretty sure it&#8217;s in 19.7. There&#8217;s basically a new landing section that&#8217;s added to the style book. I&#8217;m 99% sure I&#8217;ve tested this a ton.</p>\n\n\n\n<p>And there&#8217;s also in line with this, there&#8217;s some upgrades to the style book. The style book is a bit better laid out. And then there&#8217;s also this landing section that basically pulls the most important information from your theme related to styles so that when you get there you get this sense of like, &#8220;Okay, this is the styling of my site, these are the colors, this is the typography.&#8221; And it just is meant to be a clear, easier to understand experience that you&#8217;re impacting the entire site.</p>\n\n\n\n<p>And with that said, you will still have access to styles when you&#8217;re in the editor, so it duplicates it. And I am really curious to get feedback from folks because I think this is going to be confusing. I think folks are going to see the same thing and think, &#8220;What&#8217;s the difference? Is this the same? I&#8217;m not really sure. Is this for the entire site and this is for the template.&#8221; And so that&#8217;s one of the things that&#8217;s part of the beauty of iterating in Gutenberg before a major release is to get that feedback.</p>\n\n\n\n<p>And part of the reason to keep it in the editor is for block themers who will want to be making changes while they&#8217;re editing templates and not just necessarily at the high level. There were a couple of different use cases to have to accommodate there. And part of the issue that we can figure out is what does the user experience look like between the two? How do we connect the two experiences?</p>\n\n\n\n<p>Maybe when you open styles in the editor, it automatically brings you to that view. I&#8217;m not really sure, but there&#8217;s ways that design thinking can be applied to this. I&#8217;m really excited about this. This helps to solve, it starts to solve a long-standing issue around communicating styles as global styles, styles as impacting your entire site. And it just brings that sidebar at the top level to be a bit more useful. And so I&#8217;m obviously way too excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>No, no, no, no. I&#8217;m really glad that you explained it. Also, the whole genesis of it because I remember those feedback from the FSC program here that people are&#8230; And I always attributed to that there&#8217;s another level of abstraction and another level of design coming with the templates where users never had access to it so they didn&#8217;t have to learn that new concept. That stumbles them, but there is a way to actually alleviate that from the user experience. That&#8217;s brilliant. And I&#8217;m really happy that it also ties the style book of it.</p>\n\n\n\n<p>What I saw was if you go through the styles in the middle section and you change the color palette in the style book, then in the right hand side, you can then see how that affects every single block or every single&#8230; Yeah. You can actually really make decisions about if you wanted that or do you need to do some additional adjustments there. The style book gives you a whole good overview. And it was always a little bit off site if you&#8230; It was hard to discover and now it&#8217;s right there for you to see. Yeah, so I&#8217;m really happy about that.</p>\n\n\n\n<p><em>Anne McCarthy:</em> I&#8217;ll share a little sneak peek. I was talking with some of the developers yesterday about this. But some of the work also to bring this to the top level, have it be like that is to then expose it for classic themes. Can you imagine a style book for classic themes and this landing section for classic themes?</p>\n\n\n\n<p>The benefit, and this again goes back to phase two and gradual adoption and how important it is that we have these on ramps and ways of bringing some of these new features to everyone who&#8217;s using WordPress. And so that&#8217;s a PR in progress expected on a future Gutenberg Times episode. And all block themers out there and all themers in general out there, this is a great area to give feedback and to see how it works with your theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah, the style book. When I was implementing some Gutenberg sites in the early days, 2018, I would create a post with all the blocks in there so we could, together with a client, look at how everything&#8217;s going to look from the theme point of view and where adjustments need to be made. But that was a major effort to put all the blocks in there. The style book is such a great tool. And bringing that to the classic theme is definitely a great way to foster adoption. Also to make the life of a classic theme developer a little bit easier doing that.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah. We got a lot of good feedback from folks being like, &#8220;I want this. Why can&#8217;t I use this yet? How can I use this?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s the best thing that comes with Gutenberg and, &#8220;I need it.&#8221; I can totally.</p>\n\n\n\n<p><em>Anne McCarthy:</em> And I love that feedback loop. And then one of the things, the next thing to think about is what does that look like to expose it in the appearance menu? We have patterns, do we have a style? And then what about the font library? Where&#8217;s the order of things? These are things that are on my mind. It&#8217;s like, &#8220;Okay, do we have them all separate? When do we bring them together? What does that experience look like for exposing these things?&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, the holistic approach to design is so important. Yeah. But that&#8217;s the whole story about Gutenberg. You need to first do the small things so you can do it in context with the big things. And it&#8217;s really a little slow to go from the small things to the big things when you do something new. The iteration and the feedback loop is really, really important.</p>\n\n\n\n<p>Yeah. Here&#8217;s your landing section for the style book is the next one. Next item on the style book tab. Then the next one is something that surprised me a bit, that we have now an exposed filter in the drop down for the individual image on select or upload media that says, &#8220;Okay, filter the medium about uploaded in this post or unattached pictures or to show me just my pictures.&#8221; Yeah. It&#8217;s filtering down to something that we were never exposed to before and it&#8217;s really an enhancement of the media library for this Gutenberg section. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yeah. And I&#8217;ll note that this actually really nicely ties into phase three. I know it doesn&#8217;t seem like it at first, but one of the things that whenever I talk to enterprise folks, imagine you are writing 50 articles a day. And you have photographers, you have media teams, you have all this sort of stuff. And you&#8217;re trying to add content, you&#8217;re trying to add media to a post.</p>\n\n\n\n<p>One of the biggest things is, is this file in the doc already and is it attached to this post in any way? They need quick ways to identify very fast, is this already in here? If not, can I add it in? And because it helps prevent people from uploading the same image five times. This is something that starts down that path of thinking about media library improvements, the workflow related to it. And whenever you&#8217;re creating content in mass with lots of different people, how can you make it clearer and easier to quickly filter?</p>\n\n\n\n<p>I&#8217;m so glad you called this out. I actually totally missed this. It seems like a smaller thing, but it actually directly ties into feedback that&#8217;s come into the project. I think it&#8217;s a cool quality of life improvement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I can see that. Then especially the net has become so much more visible, visual that you need the pictures or the videos or the audio a little bit more sorted so that&#8217;s wonderful. Yeah, so I think we&#8217;re through the enhancements and I haven&#8217;t seen…</p>\n\n\n\n<p><em>Anne McCarthy:</em> Oh, I can point out one thing that I think could be good.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes, please.</p>\n\n\n\n<p><em>Anne McCarthy:</em> We were talking about this write mode, and this relates to this. This is like a bug fix. Write mode is exposed currently. And the plugin, it&#8217;s actually as of&#8230; I just checked the issue today that I opened. Between user testing and feedback, it&#8217;s pretty clear that it needs to be behind an experiment.</p>\n\n\n\n<p>It&#8217;s actually going to be moved behind an experiment, but that will happen in 19.8. I&#8217;m pretty sure not 19.7. But in the meantime, to help reduce some of the confusion that we saw some folks running into, it basically makes it so that the tool selector between write and design is not exposed in the post editor. You&#8217;re only in design mode. And design mode, it shows all the tools. You can see everything, which is what you&#8217;re used to. Write mode offers that content only experience. It really just focuses on the content. It really&#8230; There&#8217;s a lot to figure out there, but I think of it as it contains the experience just to the purity of writing. It just is focused on the words. You can&#8217;t add a block, you can&#8217;t remove a block. It&#8217;s a very simplified editing experience.</p>\n\n\n\n<p>And so, this basically has it so it&#8217;s only available in this write mode whenever you&#8217;re in the site editor. Which makes sense where you get that overwhelm and that&#8217;s where someone might just want to focus on the content of their template. But in the post editor, it doesn&#8217;t make as much sense. If you&#8217;re writing content, you don&#8217;t necessarily need to have these two different options. For 19.7, this is with landing. And then in the future, this will be put behind an experiment.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Okay. Yeah, I think we should do a separate podcast episode about all the 15 experiments in Gutenberg.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yes, that would actually be a really cool episode. I would love that. I would be game for that. For sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> We definitely would need to do this on video because we&#8217;re going to demo things and all that. Yeah. Yeah. I will keep it in the back of my mind for next year.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Do it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And we can do that. Yeah. Because we have until April until the new version comes out so there&#8217;s a lot of experiments that come up. yeah. The listeners, this was 16. 16. Yeah. 6.7 or 19.7. It&#8217;s 16.7. Yeah. Right?</p>\n\n\n\n<p><em>Anne McCarthy:</em> Yes. When you said it, it made perfect sense to me. I&#8217;m not going to lie. I was like, &#8220;Yep, that&#8217;s right. That&#8217;s true.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Development or Discussed</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: This was Gutenberg 19.7. And so we are at the section of what&#8217;s in active development or discussed. And we mentioned it before, there is these inline commenting that actually was almost entirely done by a group of contributors from a sponsored company called Multidots. And Pooja Bhimani, I hope I pronounced that right, is the lead on that. And they released the first and experimental version of inline commenting for the block editor. I think you were involved in that a little bit more heavily. Do you want to talk about this a bit more?</p>\n\n\n\n<p><em>Anne McCarthy: </em>Yeah, I would love to talk about it. I think it&#8217;s a great example of a wonderful contribution story for a really big feature. And the team over at Multidots reached out and they built a number of collaboration tools within their plugin and naturally wanted to help Core. And so this was where they decided to jump in. And right now they have shipped an initial version of 19.5, I think is what it got into, for inline comments.</p>\n\n\n\n<p>And what it does is block level inline comments. You can comment on an entire block and you cannot comment on a sentence within that block. It&#8217;s an initial prototype to get some of the kinks out. And Ella, one of them, EllaTrips I think is her GitHub username.&nbsp;</p>\n\n\n\n<p>Yeah, long, long, long time WordPress contributor and Core contributor has been really helping there as well as Riad and Joen and design. There&#8217;s just been a lot of beautiful coming together to move this feature forward. And it&#8217;s basically in a state where they&#8217;re both starting to chip away at some of the minor bugs, like, &#8220;Okay, these are obvious things to fix.&#8221; And then they&#8217;re going to work on implementing a new design.</p>\n\n\n\n<p>And so there&#8217;s some really cool designs on there, both for the short term and thinking really long term. I actually have a post I&#8217;m hoping to share today, sharing an update about all these different phase three areas. And this is just one of those big areas to keep in mind and to follow. There&#8217;s a lot of momentum and there&#8217;s a lot of work being done there. And Multidots has done a great job.</p>\n\n\n\n<p>This is a huge thing to jump into as a first contribution. And so huge kudos to them. This is not an easy task. I think they&#8217;ve been working on this since April of this last year. It&#8217;s been a huge effort to come together. And it&#8217;s been really fun to work with them and to watch them develop directly in the Gutenberg plugin and land something and iterate.</p>\n\n\n\n<p>And that&#8217;s part of the cool thing with the Gutenberg plugin and with the&#8230; It&#8217;s an experiment right now, so you have to turn it on under Gutenberg experiments. But expect to see more to come there and test, a call for testing from yours truly eventually. I&#8217;m hoping next week. That&#8217;s one of my top priorities for next week and this week is to get that announced update post out about the different areas of phase three.</p>\n\n\n\n<p>But yeah, I&#8217;m really excited about it. I think it&#8217;s a cool thing if you&#8217;re a small editorial team to try it out. If you&#8217;re a plugin author, think about how you might want to extend it. All that workflow collaboration head space, this is one of the first meteor things, or probably the second meteor thing that&#8217;s land other than data use, which is a huge thing. I just completely&#8230; Data views is the first, this is the second. And so, I&#8217;m really excited to see some of these phase three features that are really tangible begin to get out into the open.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Well, I&#8217;m glad you bring this all to us. And I think we are all&#8230; Yeah, test it all out. Did you say you want to post it today or tomorrow?</p>\n\n\n\n<p><em>Anne McCarthy:</em> The update for phase three will be today. I want it out today.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I will bring it into the show notes.</p>\n\n\n\n<p><em>Anne McCarthy: </em>Perfect.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> &#8230; because we are not going to publish that until Sunday. Today is Thursday, so it&#8217;s really good. I&#8217;m going to share it in the show notes. I think that&#8217;s an update on the real collaboration on commenting and interviews. I&#8217;m very much looking forward to reading that as a whole.&nbsp;</p>\n\n\n\n<p>All right. This is, we are at the end of the show today, although with two plugins and Anne here, we have a great show. And next show would be in two weeks with Sarah Norris and it will be the last of 2024. And then I&#8217;ll go on vacation. Yes.</p>\n\n\n\n<p><em>Anne McCarthy:</em> Good. Good. Love to hear it. You got to rest. Congrats on over 100. I cannot believe you have over a hundred episodes of this. That&#8217;s really incredible. I keep thinking about that at the beginning of the show. I think that&#8217;s so cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, thank you. Yeah. I couldn&#8217;t have done it without you and all the other guests that are here that bring their brilliance to here. Because I only see one side of things and having other aspects of it makes it so much richer. Dear listeners, as always, the show notes will be published on <a href=\"http://gutenbergtimes.com/podcast\">gutenbergtimes.com/podcast</a>. This is episode 111.</p>\n\n\n\n<p>And 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>. And I want to thank you, Anne, for taking the time tonight to be with me and walk me through things and share your insights with everybody. Thank you all for listening. Goodbye.</p>\n\n\n\n<p><em>Anne McCarthy: </em>Goodbye. Thank you for having me.</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, 24 Nov 2024 09:52:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:122:\"Gutenberg Times: WordPress 6.7 Release video, inline comments, Woo Talks about Themes, and more —   Weekend Edition #311\";s:7:\"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=30871\";s:7:\"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:123:\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/\";s: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:23268:\"<p>Phew! That was a long break! And a lot happened. It might take two editions to get us up to speed again.</p>\n\n\n\n<p>And it doesn&#8217;t stop, the <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">preliminary schedule for WordPress releases in 2025</a> came out and the <a href=\"https://make.wordpress.org/core/2024/11/21/wordpress-6-8-call-for-volunteers/\">call for volunteers is open for WordPress 6.8</a> release cycle. </p>\n\n\n\n<p>With Thanksgiving ante portas (= at the gate. Yes, I was in Rome) I hope you have a calmer week ahead of you, be it because many contacts take time off and the noise level is reduced, or you  connect with family and friends on Turkey day, off-screen. </p>\n\n\n\n<p>I am always grateful to you, dear subscriber. Your support and keen curiosity keeps me sharing the news around the block editor and beyond with you. It also makes me a listener beyond the noise.</p>\n\n\n\n\n\n<p>Have a splendid weekend ahead! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#gutenberg-plugin-releases\">Gutenberg plugin releases</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-7-release-video-inline-comments-woo-talks-about-themes-and-more-weekend-edition-311/#this-week-in-playground\">This week in Playground</a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2024/11/wordpress-6-7-1-maintenance-release/\">WordPress 6.7.1 </a>was released to quickly fix bugs that appeared late in the release cycle. Check the release post for details. If you just now consider upgrading to WordPress 6.7, you can consult the <a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">Field Guide</a> and the <a href=\"https://gutenbergtimes.com/6-7-source-of-truth/\">Source of Truth</a> to find out about all the new features and APIs.</p>\n\n\n<div width=\"100%\" class=\"ng-block-f8d95715c85ec35c wp-block-newsletterglue-separator ng-block\"><div><div><div class=\"ng-block-td\" align=\"center\"><hr /></div></div></div></div>\n\n\n<p><strong>Rich Tabor</strong> recorded the <a href=\"https://www.youtube.com/watch?v=Ok6JKHMAkH8\">The Official WordPress 6.7 release video</a>. Adam Preiser commented:  &#8220;This is the best &#8220;official&#8221; WordPress release video you guys have ever uploaded. Great job!.&#8221;</p>\n\n\n<div width=\"100%\" class=\"wp-block-newsletterglue-showhide ng-block\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n</div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joen Asmussen</strong> posted an update on the Design teams work in his <a href=\"https://make.wordpress.org/design/2024/11/18/design-share-68-nov-4-nov-15/\"><strong>Design Share #68 (Nov 4-Nov 15)</strong></a>. You can get a glimpse at the following projects or tasks:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/download/releases/6-7/\">WordPress 6.7 release site</a></li>\n\n\n\n<li>Menu navigation editing</li>\n\n\n\n<li>Page preview in global styles browsing</li>\n</ul>\n\n\n\n<p>Earlier this month, Asmussen published <a href=\"https://make.wordpress.org/design/2024/11/01/design-share-67-oct-21-nov-1/\"><strong>Design Share #67 (Oct 21-Nov 1)</strong></a> and highlighted these projects, some were already implemented in the latest Gutenberg release.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>“Show template” option</li>\n\n\n\n<li>A dedicated Styles screen</li>\n\n\n\n<li>Editor Comments</li>\n\n\n\n<li>Ambiguating Write/Design tools</li>\n\n\n\n<li>Photo Directory</li>\n\n\n\n<li>Make’s homepage</li>\n\n\n\n<li>DataViews: Density preference</li>\n\n\n\n<li>Advancing the Pages data view</li>\n\n\n\n<li>Global styles iA exploration</li>\n\n\n\n<li>Updating active menu item styling in the site editor</li>\n\n\n\n<li>Badge component</li>\n\n\n\n<li>Updated Figma Library</li>\n</ul>\n\n\n\n<img width=\"652\" height=\"441\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/list.webp?resize=652%2C441&ssl=1\" alt=\"\" class=\"wp-image-30989\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego</strong> published this month&#8217;s roundup post on <a href=\"https://developer.wordpress.org/news/2024/11/10/whats-new-for-developers-november-2024/\"><strong>What’s new for developers? (November 2024)</strong></a>.  Catch up on last-minute additions in WordPress 6.7 and see what’s coming next for Core, Gutenberg, and WordPress Playground.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gutenberg-plugin-releases\">Gutenberg plugin releases</h3>\n\n\n\n<p><strong>Gutenberg 19.6</strong> was released on November 6th. It entailed 194 Pull Requests (PRs) by 57 contributors, eight were first time contributors.&nbsp;</p>\n\n\n\n<p>37 enhancements and 65 Bug fixes. The rest are documentation, tooling, and code quality updates. Release lead <strong>Carlos Bravo</strong> highlighted in his post <a href=\"https://make.wordpress.org/core/2024/11/06/whats-new-in-gutenberg-15-9-31-may-2-2/\"><strong>What’s new in Gutenberg 19.6? (6 Nov)</strong></a> the <a href=\"https://make.wordpress.org/core/2024/11/06/whats-new-in-gutenberg-15-9-31-may-2-2/#experimental-inline-comments\">experimental inline comments</a>, and improvements to the overall site editing experience. </p>\n\n\n\n<img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/gb-19-6-comments-update-option04.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-30952\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>This week, <strong>Hector Prieto</strong> pushed <strong>Gutenberg 19.7</strong> release over the finish line. It included 148 PRs by 46 contributors, 6 of them first timers. The release contains 26 Enhancements and 49 bug fixes. Prieto emphasized in his post <a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/\"><strong>What’s new in Gutenberg 19.7? (20 November)</strong></a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/#global-styles-available-on-the-main-site-editor-sidebar\">Global Styles available on the main site editor sidebar</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/#swifter-hiding-showing-the-template\">Swifter hiding &amp; showing the template</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/#set-image-blocks-as-featured-image\">Set image blocks as featured image</a></li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/core/2024/11/20/whats-new-in-gutenberg-19-7-20-november/\"><img width=\"652\" height=\"369\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/Styles-1024x579-1.png?resize=652%2C369&ssl=1\" alt=\"\" class=\"wp-image-30953\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For the <strong>111th Gutenberg Changelog</strong>, I invited the brilliant <strong>Anne McCarthy</strong> to go over these two Gutenberg plugin releases and also discuss in more depth the inline commenting and the updates in general. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-111-developer-hours-playground-and-collaborative-editing/\">Gutenberg Changelog #111 – Gutenberg 19.6 and 19.7, Developer Hours, Playground, and Collaborative Editing</a> with special guest, Anne McCarthy</p>\n\n\n\n<img width=\"652\" height=\"185\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/Screenshot-2024-11-22-at-11.26.53.png?resize=652%2C185&ssl=1\" alt=\"Gutenberg Changelog 111 with Anne McCarthy and Birgit Pauli-Haack\" class=\"wp-image-30955\" />\n</div></div>\n\n\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> published <a href=\"https://make.wordpress.org/core/2024/11/21/update-on-phase-3-collaboration-efforts/\"><strong>Update on Phase 3: Collaboration efforts</strong></a> which discusses improvements in WordPress’s collaboration tools, including Dataviews, real-time collaboration, and inline commenting. The goal is to make teamwork easier during content creation. The post highlights important updates and invites the community to provide feedback for a better user experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jeremy Holcombe</strong> found for you the <a href=\"https://kinsta.com/blog/wordpress-block-themes/\"><strong>12 best WordPress block themes</strong></a> and  most of them are free!. He also explains briefly what block themes are and how they differ from classic themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest video on WordPressTV, <strong>Wes Theron</strong> answers the question: <strong><a href=\"https://wordpress.tv/2024/11/20/why-design-in-the-site-editor-and-use-it-for-prototyping/\">Why design in the Site Editor and use it for prototyping?</a> </strong>You&#8217;ll learn how to use the Site Editor to design and prototype websites with blocks, customize layouts, and apply basic design principles. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Devin Walker</strong>, co-founder of GiveWP, published a new plugin in the repo: <a href=\"https://wordpress.org/plugins/blocks-for-github/\"><strong>Blocks for GitHub</strong></a>. Once installed, it enables a site owner to share a specific repo or the GitHub profile with their readers. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Stephanie Pi</strong> from WooCommerce Developer Experience team invites you to <strong><a href=\"https://developer.woocommerce.com/2024/11/19/lets-talk-themes-with-ellen-bauer/\">talk about Themes</a></strong> with <strong>Ellen Bauer</strong> on <strong>December 2, 2024, from 16:00 UTC</strong>. Pi wrote &#8220;You don’t have to be an expert on themes to join. This event will serve as an informal opportunity for you to share your initial thoughts, feedback, and questions about Woo Block Themes. It’s our way of starting the conversation early and getting input directly from the community as we shape the future of this space.&#8221; <strong>Ellen Bauer</strong> is a long-standing community member, theme builder, and now Product Lead at Woo, and occasional co-host on the Gutenberg Changelog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Bud Kraus</strong> posted about <a href=\"https://kinsta.com/blog/theme-json-properties-key-value-pairs/\"><strong>Working with properties and key-value pairs in theme.json</strong></a> on the Kinsta Blog site. &#8220;Whether you’re building a theme from scratch, customizing an existing one, developing a style variation, or working on a child theme, grasping how to work with&nbsp;<code>theme.json</code>&nbsp;is essential.&#8221; he wrote.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In episode 146 of the WP Tavern podcast <a href=\"https://wptavern.com/podcast/146-frank-klein-on-redesigning-wordpress-the-shift-to-block-based-systems\"><strong>Fränk Klein on Redesigning WordPress: The Shift to Block-Based Systems</strong></a>, <strong>Nathan Wrigley</strong> and <strong>Frank Klein</strong> discuss how block patterns improve user experience and highlight the need for adaptable design, cooperation among developers, and the ability to create more dynamic content with these new systems.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> has <strong>Mike McAlister</strong> on his show and discussed with him <a href=\"https://www.youtube.com/watch?v=pkXJrHSdLsA\"><strong>Full Site Editing and Ollie</strong></a>. Mike talks about his extensive journey in the WordPress ecosystem, from a designer to a product builder with Ollie WP. They cover the importance of design in WordPress themes, the shift towards full site editing, the value of patterns and pattern libraries, responsive design controls, and more.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\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 2024&#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. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a>&nbsp;|&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong>&nbsp;|&nbsp;<strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p>The upcoming Developer Hours will happen on December 3rd, 2025 at 16:00 UTC. <strong>Ryan Welcher</strong> and <strong>Nick Diego</strong> will discuss and demonstrate how to <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/304668126/\">Improve your workflows with WordPress development tools</a></strong>. They&#8217;ll take a deep dive into the advanced usage of tools like create-block and wp-scripts, along with a few others. They will also focus on solving common challenges and showcasing techniques that go beyond the basics, even for developers already familiar with these tools.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this week&#8217;s <a href=\"https://www.youtube.com/watch?v=fs-aawt3eNc\"><strong>Developer Hours: Exploring the Block Bindings API in WordPress 6.7</strong></a>, <strong>Justin Tadlock</strong> gave an overview of the Block Bindings API and how it works, including major changes in the API since WordPress 6.5. He demonstrated how to use the new Editor UI for binding attributes and work with the new JavaScript API. Whether you are new to Block Bindings or have already started using them in their projects, the session offered valuable insights for everyone.</p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=fs-aawt3eNc\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/382901006-5b500bd7-261e-4d9b-95a5-69f3da754b06.png?resize=652%2C367&ssl=1\" alt=\"Social image for the Developer hours Exploring the Block Bindings API in WordPress 6.7 \" class=\"wp-image-30981\" /></a>\n\n\n\n<p>In his latest article, <a href=\"https://developer.wordpress.org/news/2024/11/05/how-to-add-content-only-editing-support-to-a-block/\"><strong>How to add content-only editing support to a block</strong></a>, <strong>Nick Diego</strong> shows how this feature lets users edit the content in a block without changing the block&#8217;s settings, improving user experience during content creation. He includes clear code examples to demonstrate how to implement it.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post, <a href=\"https://deryckoe.com/wordpress-block-development-complete-guide-to-multiple-blocks-interactivity-api/\"><strong>WordPress Block Development: Complete Guide to Multiple Blocks &amp; Interactivity API</strong></a>, <strong><a href=\"https://x.com/DeryckOE\">Deryck Oñate</a></strong> tailored his tutorial to developers who want to streamline their WordPress build setup, making it both efficient and flexible. You&#8217;ll dive into optimizing webpack configurations, using the interactivity API, and building multiple blocks—all while keeping the codebase clean.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest Livestream, <strong>Ryan Welcher</strong> explored <a href=\"https://www.youtube.com/watch?v=Aaghy90L39o\"><strong>Creating an advanced UI for plugins</strong></a>, and used as example building the UI for managing taxonomy controls for his <a href=\"https://wordpress.org/plugins/advanced-query-loop/\">Advanced Query Loop</a> plugin.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"this-week-in-playground\">This week in Playground</h2>\n\n\n\n<p>The Playground app now offers the Pull Request (PR) testers for WordPress Core and Gutenberg in the interface. Thanks to the contributions by <strong>Agata Dobrowolska</strong> and <strong>Brandon Payton</strong>, the feature is now reachable through the 3-dot menu in the left sidebar. If you are part of the outreach channel on Make Slack you might appreciate the easier way to test contributor work before it&#8217;ll be merged into the next release. </p>\n\n\n\n<img width=\"652\" height=\"239\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/11/Screenshot-2024-11-23-at-13.34.01.png?resize=652%2C239&ssl=1\" alt=\"\" class=\"wp-image-30986\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Don&#8217;t miss the upcoming Playground Hallway Hangouts: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>November 29, 2024, at 14:00 UTC</strong> &#8211; Playground Hallway Hangout with <strong>Ajit Bohra</strong> and <strong>Adam Zieliński </strong>&#8211; Ajit Bohra developed a <a href=\"https://github.com/WordPress/wordpress-playground/pull/2008\">block-based blueprint builder</a> and will give us a walk-through and answer questions. </li>\n\n\n\n<li><strong>December 6, 2024, at 14:00 UTC</strong> Playground Hallway Hangout with <strong>Tammie Lister</strong> and <strong>Adam Zieliński</strong>, as informal discussion on how agencies can use Playground for client and product demos and brainstorm ideas on how to improve it for this use case. </li>\n</ul>\n\n\n\n<p>Details will follow in Make Slack channel #playground and the Make Blog. </p>\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Featured Image: <em>Featured image for the  Block Talks event site in 2020 by Mel Choyce </em></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\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\"><br />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 type=\"submit\" 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 <br />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<hr class=\"wp-block-separator has-css-opacity 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, 23 Nov 2024 02:01: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: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:103:\"WPTavern: Core Team Announces WordPress Release Schedule for 2025 and Issues Call for WP 6.8 Volunteers\";s:7:\"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=180382\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/core-team-announces-wordpress-release-schedule-for-2025-and-issues-call-for-wp-6-8-volunteers\";s: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:2767:\"<p>Automattician Héctor Prieto has revealed the <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">schedule for WordPress releases</a> in 2025. Similar to 2024, three major releases are planned:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress 6.8 – Beta 1 on March 4, stable release on April 15</li>\n\n\n\n<li>WordPress 6.9 – Beta 1 on June 24, stable release on August 5</li>\n\n\n\n<li>WordPress 7.0 – Beta 1 on September 30, stable release on November 11</li>\n</ul>\n\n\n\n<p>The Core team has considered year-end festivities and key events like WordCamp Asia and WordCamp Europe when setting these dates. Héctor mentioned, “Although the 6.8 dates aren’t final yet, they are close to final enough to let contributors know their availability around that time.”</p>\n\n\n\n<p>The community can share their feedback on the release schedule either in the comments below the <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">post </a>or via a Slack DM by November 29, 2024.</p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.8 Call for Volunteers</h3>\n\n\n\n<p>Héctor Prieto has shared the tentative timeline for <a href=\"https://make.wordpress.org/core/2024/11/21/wordpress-6-8-call-for-volunteers/\">WordPress 6.8</a>, which will include up to Gutenberg 20.4 with a maximum of 11 releases. The general release  will be on April 15, 2024. </p>\n\n\n\n<img width=\"1622\" height=\"1562\" src=\"https://wptavern.com/wp-content/uploads/2024/11/image-3.png\" alt=\"\" class=\"wp-image-180389\" />\n\n\n\n<p>The 6.8 release is looking for volunteers in the following roles:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Coordinator(s)</li>\n\n\n\n<li>Core Tech Lead(s)</li>\n\n\n\n<li>Editor Tech Lead(s)</li>\n\n\n\n<li>Core Triage Lead(s)</li>\n\n\n\n<li>Editor Triage Lead(s)</li>\n\n\n\n<li>Documentation Lead(s)</li>\n\n\n\n<li>Test Lead(s)</li>\n\n\n\n<li>Design Lead(s)</li>\n\n\n\n<li>Performance Lead(s)</li>\n</ul>\n\n\n\n<p>As there is no new default theme for WordPress 6.8, there will be no default theme lead role. As usual, the Release Lead role will be filled by project leadership. WordPress 6.7 did not have a dedicated Marketing Lead, but depending on feedback from the previous release, the 6.8 squad may reinstate this role or add other missing positions.</p>\n\n\n\n<p>Despite recent events, including several contributors being blocked from WordPress Slack channels and others stepping back from contributions, the post has already attracted a number of volunteers.</p>\n\n\n\n<p>If you&#8217;re interested in joining the WordPress 6.8 release squad as a lead, please comment your interest below the <a href=\"https://make.wordpress.org/core/2024/11/21/wordpress-6-8-call-for-volunteers/\">post</a> by December 6th, specifying your desired role.</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, 22 Nov 2024 18:56:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:91:\"WPTavern: Automattic Acquires Harper; Founder Elijah Potter Joins the Team as Code Wrangler\";s:7:\"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=180367\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/automattic-acquires-harper-founder-elijah-potter-joins-the-team-as-code-wrangler\";s: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:2018:\"<p>Automattic has<a href=\"https://automattic.com/2024/11/21/automattic-welcomes-harper-and-elijah-potter/\"> acquired Harper</a>, a grammar checker tailored for developers. Its founder, Elijah Potter, will join Automattic as a Code Wrangler, contributing significantly to the improvement of the company’s product lineup. The terms of the deal were not disclosed.</p>\n\n\n\n<p>Harper, <a href=\"https://elijahpotter.dev/articles/naming_harper\">named</a> after novelist Harper Lee, is an open source alternative to Grammarly. Potter had created it &#8220;after years of dealing with the shortcomings of the competition.&#8221; According to Potter, <a href=\"https://writewithharper.com/\">Harper </a>is the &#8220;grammar checker that fits my needs. Not only does it take milliseconds to lint a document, take less than 1/50th of LanguageTool&#8217;s memory footprint, but it is also completely private.&#8221;</p>\n\n\n\n<p>It provides grammar and language suggestions with impressive speed—under 20 milliseconds—far outpacing other popular grammar checkers. Available as a language server and through WebAssembly, <a href=\"https://github.com/elijah-potter/harper\">Harper</a> combines lightning-fast performance with a strong commitment to user privacy, processing all data locally on the user’s device.</p>\n\n\n\n<p> Welcoming Harper <a href=\"https://ma.tt/2024/11/welcoming-harper/\">Matt Mullenweg said</a>, “The technology is nascent, but I’m very excited to embed this throughout all of Automattic’s products, and then expanding it to other languages, all in an open source way that can be embedded everywhere. I’m a huge fan of Grammarly and use it every day, but I think we’re doing too much in the cloud right now and there is so much compute and potential at the edge, and I’m excited to drive that forward with projects like <a href=\"https://writewithharper.com/\">Harper</a>, <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, and <a href=\"https://wordpress.org/playground/\">Playground</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, 22 Nov 2024 16:05:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:66:\"Do The Woo Community: Friday Shares: Content from the Community v5\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=87032\";s:7:\"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://dothewoo.io/blog/friday-shares-content-from-the-community-v5/\";s: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:215:\"Our weekly roundup features community updates, insights on WordPress freelancing, migration guides, upcoming events for WordCamp Asia 2025, and industry resources, alongside highlights from WooCommerce developments.\";s: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, 22 Nov 2024 11:21: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:5:\"BobWP\";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:22:\"Matt: Welcoming Harper\";s:7:\"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:23:\"https://ma.tt/?p=130466\";s:7:\"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:39:\"https://ma.tt/2024/11/welcoming-harper/\";s: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:1155:\"<p>As <a href=\"https://automattic.com/2024/11/21/automattic-welcomes-harper-and-elijah-potter/\">announced by Automattic</a> and <a href=\"https://techcrunch.com/2024/11/21/wordpress-com-owner-automattic-snaps-up-grammar-checker-harper/\">covered by TechCrunch</a>, I want to take a moment to welcome <a href=\"https://elijahpotter.dev/\">Elijah Potter</a> and <a href=\"https://writewithharper.com/\">Harper</a> to join Automattic. Harper is a super-fast (way faster than LanguageTool and Grammarly), local English grammar checker. The technology is nascent, but I&#8217;m very excited to embed this throughout all of Automattic&#8217;s products, and then expanding it to other languages, all in an open source way that can be embedded everywhere. I&#8217;m a huge fan of Grammarly and use it every day, but I think we&#8217;re doing too much in the cloud right now and there is so much compute and potential at the edge, and I&#8217;m excited to drive that forward with projects like <a href=\"https://writewithharper.com/\">Harper</a>, <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, and <a href=\"https://wordpress.org/playground/\">Playground</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, 21 Nov 2024 21:27:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"WPTavern: PeepSo Leaves WordPress Plugin Repository\";s:7:\"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=180255\";s:7:\"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://wptavern.com/peepso-leaves-wordpress-plugin-repository\";s: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:3825:\"<p>Matt Jaworski, Co-Founder of PeepSo.com, has <a href=\"https://www.peepso.com/peepso-is-leaving-the-wordpress-org-repository/\">announced</a> that  PeepSo is leaving the WordPress plugin repository. Moving forward, all updates for the plugin will be served directly from PeepSo’s servers. Explaining the decision, Jaworski expressed dissatisfaction with the repository, stating, “We have never been very happy with the WordPress repository, as we found their rules to be convoluted, poorly defined and too open for interpretation – that includes both the Plugin Guidelines and the way the support and review forums are moderated by them.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">Key Reasons Behind the Decision</h3>\n\n\n\n<p>He shared that several factors contributed to this move like learning recently that WordPress.org is not owned by the WordPress Foundation, as many assume, but is instead a private website managed by Matt Mullenweg. This, combined with unsettling actions by WordPress.org, such as banning developers, disabling plugin updates for client sites, and even taking over an entire plugin, led to a loss of trust. He noted, <em>“</em>We have thus lost our trust in the WordPress.org platform, the WordPress Foundation itself, and most importantly the man who seems to wield the ultimate power in the entire ecosystem.”</p>\n\n\n\n<p>PeepSo was also suspended without a warning for issues that were already fixed. He explained,“There were a few cases where security researchers pentested our demo site, and found some minor issues. WP.org jumped on these and suspended our plugin, even though the issues were in our paid addons, or even third party software &#8211; NOT in the plugin hosted on WP.org. They have since apologized, but the issue of having our plugin suspended without warning stands &#8211; it affects our release cycle and our customers.”</p>\n\n\n\n<a href=\"https://www.peepso.com/community/?status/156601-156601-1727260854\"><img width=\"1756\" height=\"1800\" src=\"https://wptavern.com/wp-content/uploads/2024/11/image-2.png\" alt=\"\" class=\"wp-image-180266\" /></a>\n\n\n\n<p>“All that combined with the WPEngine drama led us to the decision to finally pull out of WordPress.org &#8211; WP.org hijacking a plugin from under the original devs was the final straw. That was the day we decided too pull the trigger and focused on removing the WP.org dependency from our business.”, he continued.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Moving Forward</h3>\n\n\n\n<p>Existing users of PeepSo will need to manually update the base plugin to version 7.0.0.0, after which all updates will be delivered directly from PeepSo’s servers. </p>\n\n\n\n<p>Jaworski also hinted at potential changes to improve code organization and performance. “The Plugin Guidelines prevented us from putting premium code in the base plugin (paywalled) so we were forced to encapsulate paid features into separate plugins. There is an idea bouncing around of merging some premium code into the base plugin, and only enabling it based on the license type (free vs paid). This should lead to better code organization and performance improvements, but it&#8217;s just a general idea, likely not to be touched any time soon.”, he said.</p>\n\n\n\n<p>After the ACF controversy, several plugin authors <a href=\"https://wptavern.com/developers-remove-plugins-from-wordpress-org-repository-after-acf-controversy\">removed their plugins</a> from the WordPress.org repository. Luc Princen, an eCommerce developer at Wooping,&nbsp; also <a href=\"https://x.com/LucP/status/1858476808481456368\">shared</a> on X that they weren&#8217;t going to put WPWooping&#8217;s new Shop Health plugin on the Repository and also published a <a href=\"https://wooping.io/blog/2024/11/why-were-not-releasing-on-wp-org-yet/\">blog post </a>detailing the reasons.</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, 21 Nov 2024 18:33: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:7:\"Jyolsna\";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:83:\"Do The Woo Community: AI, DevOps, and Accessibility in WooCommerce with Anick Akbar\";s:7:\"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:28:\"https://dothewoo.io/?p=87009\";s:7:\"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://dothewoo.io/ai-devops-and-accessibility-in-woocommerce-with-anick-akbar/\";s: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:218:\"In this episode of Do the Woo, Anick from Pixable chats about his agency\'s journey with WordPress and WooCommerce, innovative client solutions, AI trends, compliance challenges, accessibility, and community engagement.\";s: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, 21 Nov 2024 17:40:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:55:\"WordPress.org blog: WordPress 6.7.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18096\";s:7:\"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/2024/11/wordpress-6-7-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8607:\"<h2 class=\"wp-block-heading\">WordPress 6.7.1 is now available!</h2>\n\n\n\n<p>This minor release features 16 bug fixes <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=6.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">throughout Core</a> and <a href=\"https://github.com/WordPress/wordpress-develop/pull/7851\">the Block Editor</a>.</p>\n\n\n\n<p>WordPress 6.7.1 is a fast-follow release with a strict focus on bugs introduced in WordPress 6.7. The next major release will be <a href=\"https://make.wordpress.org/core/6-8/\">version 6.8</a>, <a href=\"https://make.wordpress.org/core/2024/11/19/proposal-major-releases-for-2025/\">planned for April 2025</a>.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.7.1.zip\">download WordPress 6.7.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-7-1\">visit the HelpHub site</a>. You can find a summary of the maintenance updates in this release in the <a href=\"https://make.wordpress.org/core/?p=116365\">Release Candidate announcement</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"is-style-default\">This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>.</p>\n\n\n\n<p class=\"is-style-default\">WordPress 6.7.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a>, <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a>, <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a>, <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a>, <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glynnquelch/\">glynnquelch</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a>, <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</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/369work/\">miroku</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a>, <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a>, <a href=\"https://profiles.wordpress.org/room34/\">room34</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a>, <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a>, <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a>, <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a>, <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a>, <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a>, <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a>, and <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C080HLPP2Q6\">#6-8-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>aaroncampbell</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbravobernal</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ankit-k-gupta</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Nov 2024 14:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}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:90:\"WPTavern: #146 – Fränk Klein on Redesigning WordPress: The Shift to Block-Based Systems\";s:7:\"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=180076\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/podcast/146-frank-klein-on-redesigning-wordpress-the-shift-to-block-based-systems\";s: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:58605:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast, which is dedicated to all things, WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the shift to block by systems in all parts of WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Fränk Klein. Fränk is a principal engineer at Human Made and brings a wealth of experience from his extensive history with WordPress, having started with the platform in 2011. He previously worked at Automattic, and now directs his expertise towards WP Development Courses, where he teaches block theme and custom block development.</p>\n\n\n\n<p>Fränk talks about the modernization of PHP within WordPress, a topic that often gets overshadowed by the hype around Javascript. We get into Human Made&#8217;s work and enterprise focused WordPress agency renowned for serving high profile clients, such as the Harvard Gazette and TechCrunch. Fränk explains the intricate custom backend development needed to meet the complex requirements of enterprise clients, like sophisticated editorial workflows for clients like banks.</p>\n\n\n\n<p>Fränk provides a comprehensive breakdown of the Gutenberg projects four phases, content editing, site customization, collaborative editing, and multi-lingual capabilities. We explore how FSE is transforming WordPress by integrating new editing tools, and modernizing the admin interface. Moving the platform from its classic roots to a more dynamic block-based editing environment.</p>\n\n\n\n<p>Fränk shares his unique perspectives on the challenges and rewards of engineering and teaching within the WordPress ecosystem. He stresses the importance of understanding client needs and the necessity for developers to engage in continuous learning.</p>\n\n\n\n<p>We also talk about using traditional WordPress solutions and third party page builders, like Bricks, Beaver Builder and Elementor. Fränk argues for the streamlined, block-based systems, offered by WordPress core, citing both financial and technical benefits.</p>\n\n\n\n<p>Our conversation continues into the broader implications of WordPress&#8217;s ongoing evolution, the significant admin interface redesigns, and its impact on users and agencies. Fränk discusses, the challenges users face with these changes, and the importance of improving communications within the WordPress community to facilitate smoother transitions.</p>\n\n\n\n<p>Towards the end, Fränk talks about his experiences with course creation and content maintenance, particularly given the fast paced changes in WordPress features. He emphasizes the need for a solid grasp of foundational web development concepts to fully leverage the platforms evolving tools.</p>\n\n\n\n<p>If you&#8217;re keen on understanding how full site editing and other WordPress innovations can enhance your projects, and wish to gain insights into the evolving WordPress landscape, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes, many added by Fränk, by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Fränk Klein.</p>\n\n\n\n<p>I am joined on the podcast today by Fränk Klein. How are you doing Fränk?</p>\n\n\n\n<p>[00:04:10] <strong>Fränk Klein:</strong> I&#8217;m doing great. Thank you for having me.</p>\n\n\n\n<p>[00:04:12] <strong>Nathan Wrigley:</strong> Really nice to have you on the podcast today. We&#8217;re going to talk a lot about full site editing. I&#8217;m not entirely sure where the conversation is going to go. But before we do that, Fränk, just over to you really for a brief moment on your bio. Just tell us about your history with WordPress, perhaps where you work, maybe some interesting projects that you&#8217;ve worked on. Anything you like really, but just tell us a little bit about you and WordPress.</p>\n\n\n\n<p>[00:04:35] <strong>Fränk Klein:</strong> Yeah, so I started in WordPress in 2011, software engineer. I worked at a small agency in Luxembourg, and then from then I went to Automattic, wordpress.com, then VIP. And now I&#8217;m at Human Made, where I&#8217;m now principal engineer, which is great. I get to work on a lot of interesting projects.</p>\n\n\n\n<p>And kind of out of that activity comes my WP Development Courses business. So where I do sell courses to WordPress developers. So obviously block theme development is one of the focuses of that.</p>\n\n\n\n<p>The thing is, because I am self-taught, it kind of simplifies with the people that don&#8217;t have any formal background in programming, and I try to help this out as much as possible.</p>\n\n\n\n<p>[00:05:11] <strong>Nathan Wrigley:</strong> For your courses, do you focus entirely on blocks, and full site editing, and the new, in air quotes, way of doing WordPress? Is that your thing, Gutenberg a hundred percent?</p>\n\n\n\n<p>[00:05:22] <strong>Fränk Klein:</strong> It used to be that, but now, so there is one on block theme development, there&#8217;s one on custom block development. But now I&#8217;m also going back to a course that I previously, which is about WordPress unit testing, so PHP unit testing.</p>\n\n\n\n<p>So the title I like to use right now is more modern PHP, so what&#8217;s happening in the PHP world. Because I think that we have been moving a lot, we have been talking a lot about JavaScript and everything like that, but that has kind of slowed down.</p>\n\n\n\n<p>But the PHP has picked up quite a lot, because PHP is modernising quite rapidly in terms of how the language works. And PHP is still a big part of WordPress, even though it doesn&#8217;t get maybe the love that we need to give it to. But yeah, there&#8217;s lots of interesting things happening there.</p>\n\n\n\n<p>[00:05:59] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s certainly not getting the attention that it once did. In fact, almost to the point where it never gets mentioned really. But like you said, quite a lot of exciting developments.</p>\n\n\n\n<p>Again, just very, very briefly, the Human Made side of things, if you haven&#8217;t come across Human Made, Human Made are a, I&#8217;m going to call it enterprise agency. Do you just want to give us some insight into the kind of work that you and the team do over there? What kind of projects you&#8217;re involved in.</p>\n\n\n\n<p>You may or may not be able to elucidate on that, but just interested to know at that kind of level, what kind of projects you might be involved in.</p>\n\n\n\n<p>[00:06:29] <strong>Fränk Klein:</strong> Yes, Human Made, we call it an enterprise WordPress agency. Now, enterprise can be a very wide word, what fits in there? But Human Made works with everything from publishing companies, to banks, to universities. One of the more recent projects that my colleagues in the US did was the Harvard Gazette, a really great project also block based.</p>\n\n\n\n<p>Then we have worked in the past with TechCrunch, the million dollar website as Jamie called it. So that was the previous iteration.</p>\n\n\n\n<p>And so generally, when it comes to enterprise, what distinguishes it from the rest of WordPress is maybe not, so the budget definitely is, because the budgets tend to be higher, but enterprises, they have very specific needs. So there&#8217;s a lot of custom development, and they have a lot of demand, especially for backend customisations.</p>\n\n\n\n<p>So when you build a website, there&#8217;s always going to be the front end, the design, everything like that. But that&#8217;s the same across every project. But when you go to the enterprise, depending on the type of business that you run, for example, a bank, what we have developed is a system where instead of just when you hit publish, the blog post goes live, or the content. There is a system where it goes to approval, and then they can say that the change isn&#8217;t approved. So all of those publishing customisations there&#8217;s a little part of it. It&#8217;s the workflow and also the interface. So that&#8217;s a big part of what we do is actually customising the editing experience in WordPress.</p>\n\n\n\n<p>[00:07:52] <strong>Nathan Wrigley:</strong> Really interesting. You can go and check those websites out. Just by the way, anything that we mention in the podcast today, you can get the show notes over at wptavern.com/podcast. Go and search over there, and anything that we mention, if we don&#8217;t read out the URL, you&#8217;ll be able to find it, including links to Human Made, and Fränk&#8217;s courses as well.</p>\n\n\n\n<p>But turning to the main focus of the podcast today, we&#8217;re going to try and get into the weeds of FSE, full site editing.</p>\n\n\n\n<p>Now, if you are fairly new to WordPress, you may be unfamiliar that there was ever any change. But if you&#8217;ve been in WordPress for anything longer than a couple of years, you&#8217;ll know that what has changed over the last several years has been pretty profound.</p>\n\n\n\n<p>It&#8217;s kind of all wrapped up inside the Gutenberg project, if you like, which has come in four phases. We&#8217;re currently on the third of those four phases, collaborative editing. I have to say, the collaborative editing piece seems to have stopped becoming the center of all attention at the moment. I haven&#8217;t seen a great deal of coverage of that, but hopefully that will pick up and we&#8217;ll get something akin to Google Docs, or something like that inside our WordPress installs.</p>\n\n\n\n<p>But the first of those phases, content editing, was followed by site customisation and then, like I said, we&#8217;re in collaborative editing at the moment. And then finally ending up with multilingual, so the ability to natively turn your site into a multilingual website.</p>\n\n\n\n<p>Where does full site editing fit into all of this jigsaw puzzle, Fränk? And also what promise does it bring? How will it change a WordPress install from a couple of years ago to something in the more, air quotes, modern WordPress?</p>\n\n\n\n<p>[00:09:25] <strong>Fränk Klein:</strong> That&#8217;s a big question, but it goes back to when we talk about full site editing. So what we now say is full site editing, essentially site editor. That is what we call the tool that is in the admin.</p>\n\n\n\n<p>And then the other part of it is the block theme. And those together then form what we now call full site editing. And that is the second phase actually of the Gutenberg roadmap.</p>\n\n\n\n<p>And the thing is, at this moment, if you go to WordPress install at this time, and you click on the admin, it looks like it has always looked, right? The admin hasn&#8217;t changed, but when you go to the post editor, you get the block editor. When you go to the appearance, so let&#8217;s go to the theme editor, what comes up is the site editor.</p>\n\n\n\n<p>And so right now we having these weird experiences where you click on the post edit and it becomes full screen, and the admin UI is gone, inside it is kind of the same. And so we need to understand those four phases, not as being four different things that are going to be delivered, but really it&#8217;s just pieces of one big admin redesign.</p>\n\n\n\n<p>So there&#8217;s, I think, what was in the beginning. And so Matt, Matt Mullenweg published a blog post, I think it was in 2017. I think we called it Gutenberg For a Reason, that was the title. And it really laid out everything that they want to change, all of the people that this concerns, which is everybody that uses WordPress.</p>\n\n\n\n<p>And once that kind of groundwork was laid, they didn&#8217;t go into it much afterwards. So that is why, when we talk about full site editing, we have these two pieces. What it changes right now, and just the specific concerns that we have with it. But also the groundwork that is laid for the phase three, which is right now is called still collaboration, but I think it&#8217;s more content editing reimagined.</p>\n\n\n\n<p>Because right now, if you&#8217;re on the site editor, sure, you have functionalities like, I can change my templates, I can change the header, the footer, or the patterns, all that is built in. But you also now have, for example, pages available in the site editor, and you can go into content editing mode, you can go into template editing mode. So already we are mixing everything together.</p>\n\n\n\n<p>And so that is the part where, when we go to phase two, the original name was customisation. So it wasn&#8217;t theme building, it wasn&#8217;t theme adaptation, it was really customisation because the idea was that, with a site editor, we&#8217;re going to reimagine the way that you interact with your WordPress website. And so the phases two and three are just going extend on that admin concept.</p>\n\n\n\n<p>And so WordPress under the hood, as part of this, is building out all of the pieces that are going to be put in place to complete admin redesign. Then actually, if you look at WooCommerce, which is of course one of the biggest, if not, I think the biggest plugin out there in WordPress, they&#8217;re are doing the same thing while they are modernising their admin experience. They&#8217;re both aligning to give that new interface feel to WordPress.</p>\n\n\n\n<p>And I think that&#8217;s something which is not a lot talked about in the wider community, that for sure we have the theme building, we have that very practical aspects, but it&#8217;s also the bigger perspective in that we are going to need to get rid of that admin that we know right now, which has been by now as old as WordPress, close to being as old as WordPress. So it&#8217;s a complete redoing of the experience.</p>\n\n\n\n<p>[00:12:27] <strong>Nathan Wrigley:</strong> Coming from an agency which is dealing with big ticket items, you know, websites that presumably have some sort of fairly large user base, and certainly I would imagine fairly deep pockets for their development, bespoke development at that. But also having a set of courses which are trying to teach aspects of all this, how do you think the whole phases approach has been handled, but particularly the redesign?</p>\n\n\n\n<p>And rather than calling it full site editing, let&#8217;s call it what I think you called it, something along the lines of the admin redesign, or something like that. How do you think that&#8217;s gone?</p>\n\n\n\n<p>And what my question really is asking is, if you could rewind the clock, let&#8217;s say four years, to a period in which the admin had not been redesigned in any way, shape, or form, you could create content with the block editor inside posts, and pages, and so on, but outside of that, everything was as it was.</p>\n\n\n\n<p>How do you feel that it&#8217;s been managed, the transition slowly over time into this reimagined admin area, full site editing and what have you?</p>\n\n\n\n<p>My impression, because I&#8217;m in it all the time, and I see the tiny little changes, and I notice it happening, it doesn&#8217;t really jar with me all that much, but I have the intuition that people who are, I don&#8217;t know, casual users of WordPress, perhaps they&#8217;re just logging into achieve a thing on their Monday morning that they need to do on the website, and then they want to log out and never look at the website again for the rest of the week.</p>\n\n\n\n<p>I feel it must have been quite a difficult thing to keep track of. New things this week, which are removed next week, and then another thing replaces it, and then, oh, if I click here, oh look, now it looks nothing like it did five minutes ago and for the last 20 years. So how well do you think it&#8217;s been handled? How easy has it been for people to cope with? I know that&#8217;s a lot.</p>\n\n\n\n<p>[00:14:09] <strong>Fränk Klein:</strong> Yeah, I think that we can always look back and say, I would&#8217;ve done this and that in the other, knowing in hindsight. That&#8217;s always the luxury that we have. But, it kind of depends on how you want to develop your product. And I think that WordPress, what we shouldn&#8217;t forget is that a lot of people now look at WordPress and say, well, a lot is changing and some things are unstable.</p>\n\n\n\n<p>But actually if we go back in time, it kind of always has been like that. It&#8217;s just that most people do not see the changes that were done because they are just dealing with the admin, they&#8217;re doing content editing stuff which was very stable.</p>\n\n\n\n<p>But I remember when the customiser was introduced. I mean, it wasn&#8217;t like this was the smoothest launch ever. And so I still remember because then I was, I think I was already at Automattic, or maybe not. But the situation was that every theme had their custom admin pages with a bunch of fields, they had their own frameworks. Everybody was sad, everybody was happy. And so then WordPress comes and says, oh, we are now going to do customiser. Huge drama, nobody wants to change it.</p>\n\n\n\n<p>And then years later everybody uses a customiser, and now the next thing comes along, it&#8217;s like, oh, now we&#8217;re going to use the site editor. Huge drama. So it&#8217;s just a repeating cycle. But where it is difficult is, yeah, just these changes being introduced. The patterns, for example, it started out with having reusable blocks. I think that was the first feature that there was. So saving a block into the database, you can add it to other pages. And then if you change one instance, everything updates, great.</p>\n\n\n\n<p>And then comes a pattern, which is more a theme developer thing back then, because you could only do it in themes previously. So you have these two concepts, and then suddenly they say, well, this is kind of the same thing because what we want to do now is you should be able to change the patterns also in the editor. So why don&#8217;t we just merge the two because they are similar.</p>\n\n\n\n<p>So those get merged in and then that&#8217;s, I think it was at 6.2, or 6.3. Then it&#8217;s me standing there, hey, in 6.2 we used reusable blocks, but now it&#8217;s called a pattern, now it works this way. So obviously there&#8217;ve been a lot of changes and I don&#8217;t think that&#8217;s going to stop because they&#8217;re just trying things and getting feedback.</p>\n\n\n\n<p>But generally it&#8217;s also the case that if you look at your clients in the agency world, they&#8217;re using very few features actually of the whole thing. So what we see as developers, all of the changes, for them it doesn&#8217;t really matter to be honest, in most cases, doesn&#8217;t matter. If you tell them, hey, what used to be a reusable block now is a pattern, they&#8217;re going to say, okay, yeah, I get it.</p>\n\n\n\n<p>Yeah, it&#8217;s kind of hard how this thing has been rolled out. But definitely what I do criticise is that we all remember the famous learn JavaScript deeply speech, and it was good advice, but also bad advice. The advice was good because the direction was, everybody&#8217;s using JavaScript, so we as WordPress are also going to go more into JavaScript because they need it to build those interactive experiences. But learn JavaScript deeply is not a great path to follow.</p>\n\n\n\n<p>And so if you talk to me and tell me I&#8217;m in this situation, I will need to learn this, I&#8217;m going to say, you do this, you that, you do the other, right? It&#8217;s a roadmap, and you can just follow it and it&#8217;ll work out fine.</p>\n\n\n\n<p>So in the beginning there wasn&#8217;t really a lot of direction, what you should learn, how you should learn it. And also all of the things that we have now, where we have a dedicated developer blog, where we have people like Jamie, there is Justin, there is Nick Diego, there&#8217;s Rich. So all these people that we know like, in quotes. There are two community outreach, developer outreach, things like that, wasn&#8217;t there.</p>\n\n\n\n<p>So I think if you would have that right from the beginning, all these people, it would&#8217;ve been a lot smoother because you still need somebody to, it&#8217;s one thing to have a change log that says, WordPress is now adding this feature, but that is not of the what.</p>\n\n\n\n<p>And so then they also show the how, but you are not understanding the why. And so the why is the big piece where we need somebody that comes in and says, okay, we have this feature, it works this way. But you can use it in this fashion, in that fashion. And so that kind of basic layer of just the big why things are there, I think that is missing just in the free content that is out there.</p>\n\n\n\n<p>[00:18:05] <strong>Nathan Wrigley:</strong> I&#8217;ve got a couple of things to add to that. So the first thing is I think the customiser bit that you said, was similar in magnitude, you know, and confusion. I guess the thing about the customiser is at least there was just one single purpose for being there. If you went into the customiser, it was basically to change the way things looked. Colors, or padding, or the number of posts in an archive, or whatever it may be.</p>\n\n\n\n<p>You were looking at the way the front end looked in the customiser, and you could understand that. I guess the difference here with the admin overhaul, again, there&#8217;s no perfect word for it, but that&#8217;ll do, is that it encapsulates so many things, and that it&#8217;s a completely rolling program. So, it&#8217;ll be this one week, and then a few weeks later it&#8217;ll be something slightly different.</p>\n\n\n\n<p>And like you said, the naming of things gets changed. And then you get things like synced patterns and all of that, that we just have to rename things over time. But in the end, it&#8217;ll settle.</p>\n\n\n\n<p>And I also think that there is definitely more boots on the ground. The appointment of Jamie Marsland, you&#8217;ve said Jamie&#8217;s name a couple of times, I&#8217;m assuming that you mean Jamie Marsland, being put out as a, not really the developer advocate, but when things have been developed, his task now is to corral people himself and other people in the community to put out content to show how that works.</p>\n\n\n\n<p>I think that was a real missing piece. And then you&#8217;ve obviously got learn.wordpress.org, developer.wordpress.org, and all of these different resources. And I think more work is going in right now than ever has before on the education piece afterwards. Whether or not people are seeing them, I don&#8217;t know. But it definitely seems like there is more effort going into explain how things are done, almost at the same time that they&#8217;re getting released, if you know what I mean. So content on YouTube within weeks of a new feature dropping, that&#8217;s new to me, and it&#8217;s really helpful when I see those.</p>\n\n\n\n<p>[00:19:53] <strong>Fränk Klein:</strong> Right. I think the problem that WordPress has is that you have so many different profiles, and it&#8217;s hard to do content which fits everybody because there is the user aspect. So that is more on the WordPress Learn side. So that&#8217;s more end user, I would call it.</p>\n\n\n\n<p>Jamie is also, I guess, in that space, and then you have the developer blog is very much more developer stuff. But one of the challenges is when we look at what I teach, so I do teach the features for sure, but it&#8217;s all down to a specific angle. And so the challenge that we have, I think in WordPress, and that we need to recognise is that when I learned WordPress, I didn&#8217;t just open WordPress and then started typing stuff. I knew that it used PHP. So I first learned PHP, I was actually quite decent in PHP before I got to the WordPress, which is lucky for me.</p>\n\n\n\n<p>But the thing is that, yes, there is a lot of content that is being released, but it&#8217;s all very piecemeal. And so the challenge is that you need to take a step back, that&#8217;s how I organise my learning materials, that we need to understand the big picture, the concepts that are there, and then once you understand those, then you&#8217;re going to be able to understand all of the rest.</p>\n\n\n\n<p>Because it&#8217;s the same thing when you go from, for example, so I knew PHP, that is the language that I definitely learned from books and everything like that. And then JavaScript, I knew somewhat, I mean, jQuery really, let&#8217;s be honest. But then when I had to learn it for real, my knowledge of PHP helped me a lot because I understood all of the concepts.</p>\n\n\n\n<p>For me, it&#8217;s not just code. I know what a variable is, what the function is, how it works, what scope is. All of these more foundational stuff that you learn when you have a computer sciences background, or something like that, formal education, you&#8217;ll learn it. But when you&#8217;re self-taught you&#8217;ll not necessarily learn that.</p>\n\n\n\n<p>And so that is something missing because, for example, Jamie has those speed builds, right? And I find them cool, they&#8217;re a cool demo. And we kind of had this little disagreement of where I said, the speed build is cool, but it&#8217;s that, it&#8217;s cool. You don&#8217;t really build websites for clients this way, where you go in and choose just will nilly change stuff.</p>\n\n\n\n<p>You need to really go into the design and say, okay, what are the font, the sizes, the colors, the spacings. So really create that design system, then you enter that. And once you have that foundation, where all of those design system values are created, then you start building out the designs. And then we&#8217;ll see that most of the stuff that you drop in, it already looks like it should look. It has the right font, it has the right size.</p>\n\n\n\n<p>And so it&#8217;s more, because when you write CSS it&#8217;s the same thing. You don&#8217;t just look at the red button and make a red button class. No, you have a certain color system, you have a certain foundational values for the HTML tag. So everything that way that you would build out your CSS in layers, that go from the least specific to the most specific, with full site editing is quite the same.</p>\n\n\n\n<p>And so the challenge that we have as a developer community is to realise that with the tooling is changing, and we are now building things visually, but all of the, let&#8217;s say the tech part underneath it, it&#8217;s still the same. It&#8217;s HTML, it&#8217;s CSS, it&#8217;s PHP, right? So that&#8217;s what the front end runs on. And we just need to take those concepts and apply them in the site editor. And then the transition is going to be a lot easier.</p>\n\n\n\n<p>But definitely some developers have a problem with, instead of just saying, I want to write code, I&#8217;ve decided that you&#8217;re not really writing a lot of code, and that is unfortunately or fortunately where the direction is going. That depends on how you&#8217;re looking at it.</p>\n\n\n\n<p>But I think with the whole perspective that we need to have on this is that you may look at the site editor and say, it&#8217;s weird that it tries to do this page builder like approach with content editing built in. Because a lot of developers say, I want it to distinguish from each other.</p>\n\n\n\n<p>But it&#8217;s more that the people that now start building websites with any of the tools that are out there, that is the experience that they get, it&#8217;s a visual builder. And so in the same way as, my daughter is six years old, she doesn&#8217;t know what the landline phone is. She saw one at my grandparents and she says, what&#8217;s that? Well, that&#8217;s a phone.</p>\n\n\n\n<p>And so, yeah, for them, the children that grow up now, obviously everything is a smartphone, everything has a touch interface. They don&#8217;t know what we knew with actual buttons, and blackberries, and all that stuff. And so that&#8217;s the perspective that we need to take. There was a very interesting podcast with Josh Hall, who has a podcast, and Mark Szymanski I think, I hope I&#8217;m not butchering his name. I think the title was even, is WordPress for old people?</p>\n\n\n\n<p>And so, yeah, I mean, I&#8217;m 40. I&#8217;m not really old, but I&#8217;m not spring chicken. And that&#8217;s a perspective that we need to have. We are in the middle of this transition and we know the old, and the new, and for us, while we&#8217;re in the middle of that transition, it&#8217;s going to be hard.</p>\n\n\n\n<p>But every day there are new people coming onto the web, and WordPress needs to be the thing that they expect, needs to be a visual builder. And they don&#8217;t know about the customiser/ they for sure don&#8217;t know about settings, pages that we used in the past. For them it&#8217;s all, it&#8217;s as much history as a landline phone. And so that&#8217;s a perspective which we need to have when we look at this project.</p>\n\n\n\n<p>[00:24:39] <strong>Nathan Wrigley:</strong> It&#8217;s kind of interesting, when you play with SaaS products, when they want to radically change their UI UX, they&#8217;ll typically be some sort of upgrade path. There&#8217;ll be a button in the UI saying, do you want to try out the new interface? And you click the button, and there you go, and you have a period of time.</p>\n\n\n\n<p>But typically, the companies presumably dog fooded at that UI UX and figured out, okay, this is the end result, this is basically what we want to offer, and we&#8217;re at the point now where we just want a little bit of guidance, where we&#8217;ve gone wrong on a few minor points. And then some people opt into it, and stay with it, other people say, actually, do you know what? I&#8217;m just going to stay with the old interface for a little while.</p>\n\n\n\n<p>We&#8217;ve got that kind of in WordPress, you know, if you use a block-based theme then those options become available, but if you use a, in air quotes, classic theme, you&#8217;re still with how it always was. But I do think that we&#8217;re presented with a different problem in that it&#8217;s so very different, and so in a state of flux. And there&#8217;s so much that has changed, and so much that will change. I feel it&#8217;s quite, I&#8217;m going to use the word discombobulating. It&#8217;s just tricky to make the decision to flip over.</p>\n\n\n\n<p>And when I frequent, I don&#8217;t know, things like social networks, X, or Facebook groups and what have you, there&#8217;s also this whole other thing of third party page builders, where people have just opted and sort of said, look, I don&#8217;t want anything to do with any of that, I want to just go with Bricks, or Beaver Builder, or Elementor, and I&#8217;m just going to handle it all that way, which makes it even more difficult to coalesce on what&#8217;s the correct path.</p>\n\n\n\n<p>So we&#8217;re definitely living in interesting times. Like you said, we&#8217;re in the middle of it at the moment. I&#8217;m kind of hoping that at some point it settles down, and we get some sort of muscle memory on where everything is, and how everything works, and that it stabilises and nothing much changes. And I feel we&#8217;re getting there at the moment.</p>\n\n\n\n<p>But it sounds from everything that you&#8217;ve said that you are putting all of your bets on full site editing, block-based everything, as opposed to, well, any other way of doing it. Classic themes, or third party page builders, or what have you.</p>\n\n\n\n<p>Why are you so bullish? Why do you think that this is the correct path? Why will WordPress and it&#8217;s core offerings succeed, do you think?</p>\n\n\n\n<p>[00:26:45] <strong>Fränk Klein:</strong> I think we already had that lined last time we saw each other, I&#8217;m fully in on that. So I built a production website at Human Made with the block editor that was still in Gutenberg. So we launched a couple of months, I think two or three before it officially was merging WordPress 5.0. And that was just because block-based editors were a thing before WordPress introduced it.</p>\n\n\n\n<p>Notion, for example, which is very popular, it&#8217;s a block editor. And I was very aware of the limitations of the classic editor. Yeah, so for me it made total sense, just from the content editing perspective. And this is where it&#8217;s kind of hard to distinguish when you don&#8217;t know what to choose, and you see two people posting on X, or on Facebook, and one says, oh yeah, this is great, editors love it. Another person says, no, they hate it.</p>\n\n\n\n<p>So I can say that very comfortably that editors love it, because I work with a lot of big publishing brands. They have a lot of people that write content, and they all love the block editor.</p>\n\n\n\n<p>So the other person maybe has talked to one person once that didn&#8217;t like it, and now that&#8217;s opinion. So that&#8217;s the hard part, is that when you listen to somebody&#8217;s opinion, you should look at, okay, what are they doing? What is their background? Why do they have that opinion? And that goes in both ways.</p>\n\n\n\n<p>When you are a user of a specific page builder, you need to look at, okay, what is this person doing? Why do they like this? But the problem that we have in WordPress is that if you Google on YouTube how to build a website, or how to build the WordPress website, there&#8217;s going to be a gazillion videos that use some kind of third party solution. And that is just influencers that want to make money through affiliates.</p>\n\n\n\n<p>And so that is, I think, changing because when we look at the economic incentives for you to build using Core WordPress, it&#8217;s zero, it&#8217;s free. I can just take it, it&#8217;s all there for me, versus having a product that I recommend, and again, 30% of whatever the price is. That skews the debate a little bit unfortunately.</p>\n\n\n\n<p>Because when you, for example, let&#8217;s say you don&#8217;t know how to build a website at all. You Google it, you find a video that explains to you, oh, we use this product here, this product like that. You think that this is what WordPress is.</p>\n\n\n\n<p>And so when we talk about page builders, for me it&#8217;s always, you do what you do, and if it works for you, then I&#8217;m fine with it, right? I have my position on it, but if you have a different position, that&#8217;s great. But it&#8217;s different than, if you built your website using this page builder and it&#8217;s your own website, then you took the decision and you own it fully. When you are an agency and you build a website for a client using a specific product, and then this client wants to move off of the page builder, and they come to a different agency. Then you say, oh, I have this website, I have this man, this content, how do I get it off whatever thing?</p>\n\n\n\n<p>And then you&#8217;re saying, yeah, we can do some automated migration, but really you have to rebuild a lot, and then you are totally falling out of the sky. It&#8217;s like, why, it&#8217;s WordPress? Why can&#8217;t you just take WordPress and put a new theme on it, and then it&#8217;s going to be great?</p>\n\n\n\n<p>And then we get into, well, you need to understand that, yada yada. So it&#8217;s going to be a lot of technical mumbo jumbo, they have zero interest in it. And unfortunately it&#8217;s also going to be very pricey. If you have a lot of content to take from some kind of solution, which doesn&#8217;t store the content in the format that is native that WordPress can understand, it&#8217;s going to be a lot of hard work to get it right.</p>\n\n\n\n<p>So there is the data liberation project, which is going to help with that hopefully. But it&#8217;s also the case that certain page builders, just due to the way that they are built, it&#8217;s very hard to make sense of it. You have page builders that give you a total freedom that you build, so it&#8217;s essentially just blobs of HTML and so, how do you make sense of blobs of HTML? It&#8217;s very hard.</p>\n\n\n\n<p>So the whole deal with blocks is, what is not understood is, that theme building in WordPress was fine, it was a solved problem. But the problem was that WordPress has zero clue what you have in your templates. Some PHP, some HTML, some JavaScript, and you cannot go through that in a programmatic way and say, this is the title, this is the content.</p>\n\n\n\n<p>So what blocks give you is that every block is self-contained, and you know exactly what it is. This is a title, this is a paragraph, this is a header block. And so to have that freedom of customising your designs, you need to give structure to it. And so blocks solve that problem that we now can break up a design to different pieces, and customise them individually.</p>\n\n\n\n<p>But also it solves the long standing problem of who wins out. Because it&#8217;s like this, you build a website, you take a theme, you take a plugin. Put your stuff on the page using a short code back in the day, and it looks like nothing, right? And then the plugin says, oh, it&#8217;s the theme&#8217;s fault, and the theme says, no, it&#8217;s the plugin&#8217;s fault. And you&#8217;re just, okay, let&#8217;s just forget about it.</p>\n\n\n\n<p>And then when you are a developer, you can fix it. But when you&#8217;re not a developer, it&#8217;s terribly frustrating because maybe you bought the theme, and maybe you bought a plugin, and everybody&#8217;s just saying it&#8217;s the other person&#8217;s fault. And that&#8217;s just not the great situation.</p>\n\n\n\n<p>And so if it is a block, it can integrate into this existing design system. Hopefully it gives you a few options to customize stuff. But generally, if you drop a block into Twenty Twenty Two, and then Twenty Twenty Five, and the block is quite unopinionated, it&#8217;s going to look somewhat like the theme. It&#8217;s never going to be close, especially if you have very complicated blocks like the obvious slider, you know, people love sliders, so that&#8217;s more difficult to handle.</p>\n\n\n\n<p>But there are a lot of very basic blocks, like in an LMS, a course list, course title, that kind of stuff, where we can have a lot of compatibility with themes just out of the box. And you always need to understand the problems of the past to understand the solutions to take right now. And WordPress still is, even with block themes, can be very hard to use, right?</p>\n\n\n\n<p>Because this doesn&#8217;t work with this, this doesn&#8217;t work with that. So we need to really simplify and agree on the common set of interfaces, a common set of programming interfaces, a common set of just ways that we build things, and blocks help with that.</p>\n\n\n\n<p>But the difficulty in that is that WordPress, for a long time, the philosophy was more, there&#8217;s zero in it, right? So if you install WordPress 4.9, there&#8217;s nothing in it. And WordPress was just, hey, I&#8217;m going to give you these programming interfaces, and then you do whatever you want.</p>\n\n\n\n<p>So the customiser was like that. So you take the customiser and then you build your controls that you want. But then you have the problem that different themes have different controls. When you switch themes, it breaks.</p>\n\n\n\n<p>And so now WordPress is taking the exact opposite way, where it&#8217;s saying, no, we are going to agree on this set of tools. It&#8217;s going to be handled this way. It&#8217;s very opinionated. And more than the technical issues, it&#8217;s just this opinionated version of how the WordPress admin should look that is causing problems.</p>\n\n\n\n<p>And the thing is with the SaaS, when you subscribe to some platform and you do change the interface, well, you like it or you don&#8217;t like it, it&#8217;s not our problem. If you don&#8217;t like it, then leave. That&#8217;s essentially their solution to solving that problem, because when they change interfaces, their bet is that more people going to like it than people are going to dislike it, so they&#8217;re going to be fine. But still the opinion is that, hey, if you don&#8217;t like it then leave, we don&#8217;t care.</p>\n\n\n\n<p>And so we in WordPress have the problem that we do want people to stay around for a long time. We need to give people those tools where they don&#8217;t need third party tools to do very basic things. And it&#8217;s the same for WordPress, also same for WooCommerce, right? It&#8217;s both having a lot of other platforms competing with them. And we need to give people the tools that they need to really have a site that stays around for a very long time.</p>\n\n\n\n<p>[00:33:55] <strong>Nathan Wrigley:</strong> I guess there&#8217;s a few problems, isn&#8217;t there? Firstly that the SaaS platforms have complete control over the architecture of all the things. So they know everything that&#8217;s going on with every one of their clients. Whereas WordPress, who knows what&#8217;s going on with any one of the millions of websites? What the dependencies are, what hosting it&#8217;s on, what range of plugins it&#8217;s got going on in there. So it has to be much more slowly, slowly, gently. Just try to make sure that everything is backwards compatible.</p>\n\n\n\n<p>But also when you kind of muddle up the way a site looks with the content, so the design and the content is put into the same interface, there&#8217;s potential for everything to go wrong there as well.</p>\n\n\n\n<p>Certainly at the moment, I really do like the endeavors of locking things within blocks, so that the designers, if they&#8217;ve got the technical capacity to get in there and figure out how to lock different aspects, they can hand over, kind of like boilerplate templates for pages if you like, drop things in. You can change the text here, but you can&#8217;t change the background. The colors are fixed, but the font, that&#8217;s okay, you can change that. All of that seems to be adding to a much more complete solution as well.</p>\n\n\n\n<p>Whereas in the more recent past, if you hand over something to a client, they&#8217;ve basically been able to destroy everything just by clicking around in the interface. Whereas now, hopefully in the near future, more of those locking things will be possible so that, like I said, you can make it so that they can&#8217;t change this thing, or the other thing as well.</p>\n\n\n\n<p>[00:35:14] <strong>Fränk Klein:</strong> Right. I think we can talk a lot about the tech, and the tech is important, but the tech is just that. And the technology never comes first. It&#8217;s always the demand for the technology that precedes it.</p>\n\n\n\n<p>And when we look at the agency world, you kind of have the two extremes. On the one hand, you have agencies that say, I&#8217;m going to build your website, if you need to change anything, call me, send me an email, and we&#8217;re going to change it for you.</p>\n\n\n\n<p>And that&#8217;s certainly a model that works up to a certain point, because if you do request a lot of changes on the website, then it becomes pricey from a certain point. But what we now see in the larger companies is that from a certain point on, the marketing&#8217;s not going to be done by an agency, the market is going to be done in house. And those people in the marketing world, they are used to things like HubSpot Pages, all these tools that are out there to ClickFunnels for example, and they take that for granted.</p>\n\n\n\n<p>And they might even not know WordPress depending on where they&#8217;ve been, or what the age is even. And so they come into WordPress and then they say, I want to build this landing page for this campaign, and then their boss says, yeah, I&#8217;m going to call up our agency and then say, yeah, give me a design. Then we&#8217;re going to hand code it, it&#8217;s going to take us a week. Then I say, okay, no, it&#8217;s not going to take a week for me there to build a campaign because I need to build a lot of landing pages.</p>\n\n\n\n<p>And so that is the thing that&#8217;s changed that with marketers taking a liking to WordPress, and also being more involved with that, we need to give them the tools that they need. So the challenge that WordPress has is that it needs to correspond to that really use case where you have people that know how to use this tool, that want to build landing pages, want nearly complete control over the website, and that don&#8217;t want to pay an agency to do it, and they want to be fast and quick.</p>\n\n\n\n<p>And then the, I guess, path in the middle where you have maybe end users, or people that are updating the website like a restaurant, classic scenario, do you need to update their menu of the week? Where we need to offer them an interface that is easy to understand, but locked down so that they can go in and, on Monday this is the menu of the day, so that they can change those few things quite easily while keeping the design intact.</p>\n\n\n\n<p>But it&#8217;s also more, you have the tools and WordPress can give you that content locking, that design locking, all of those tools are built in. But the other part is also that every agency needs to kind of customise WordPress a bit. For example, what you can do is, when you log into WP admin, you have the possibility to register a custom widget there. So you register a widget and then you say, hey, change the menu, and it leads you directly to that page where you can edit that.</p>\n\n\n\n<p>So it&#8217;s little things like that end user experience where you can make it a lot simpler. And the challenge is that if you&#8217;re used to WordPress makes total sense because use it every day. But we really need to take a step back and think about the people that don&#8217;t use it every day, and say, okay, what can I customise in here to make this a lot smoother?</p>\n\n\n\n<p>So the challenges right now is, for sure the tech is a challenge, but tech is very solvable, right? I can teach anybody to do anything technically. But that user experience aspect, that&#8217;s really hard to do. Teaching somebody to design effective user interfaces, that&#8217;s a totally different skill to just being technical, and we need to have both at this time.</p>\n\n\n\n<p>[00:38:11] <strong>Nathan Wrigley:</strong> We know that you are very technical, you&#8217;re working for an enterprise agency, and you are teaching this content. So we could have the conversation about what we would hope the project, WordPress itself, would do differently. But remove that, we are where we are.</p>\n\n\n\n<p>But personally, looking back over the last five, six years of what you have done, have you gone down any blind alleys? Have you made any missteps that you think with hindsight, oh, I would&#8217;ve done that differently?</p>\n\n\n\n<p>I don&#8217;t know, with your courses, just released content which then got completely upended by something that Core did. Or perhaps, I don&#8217;t know, advocate for something that was a blind alley and never got taken on. So it&#8217;s more a question of not what Core did, but what you did, and how that worked out.</p>\n\n\n\n<p>[00:38:53] <strong>Fränk Klein:</strong> Yeah, so there&#8217;s two angles to it. So for the course it&#8217;s definitely. So I thought, well, this is a feature I like it. Full Site Editing is really great, because I published it in 2021. That was when they started work in just the plugin for a while. That wasn&#8217;t the plugin, so obviously it changed a lot. Then it landed in Core, and then we had a theme.</p>\n\n\n\n<p>So I did a release for 5.8, which was just the underlying APIs without the site editor. That was on theme json version one, okay. So great. 5.9 hits, a V2 comes out, which as somebody who&#8217;s using it, the difference is zero. But as somebody who shows it, I cannot have a video where it says at the top, oh, this is V1, right? So I need to re record that.</p>\n\n\n\n<p>And then now we are on V3. So yeah, I had to redo the course. I mean there have been three complete redos, and then every time that the new release comes out, pretty much have replaced between 20 to 40% of the lessons. And it&#8217;s not interface updates, but it&#8217;s more, now it&#8217;s not reusable blocks, now it&#8217;s patterns, sync patterns, partially synced patterns. Block bindings, now there&#8217;s a UI.</p>\n\n\n\n<p>So that&#8217;s just the technical part, but the other part is more that you can use it for this, you can use it for that. It&#8217;s all of those tricks that I find out, I put in there. So really it&#8217;s more like a recipe. For example, when the content only editing comes in, then it&#8217;s when I go, this is what it does, and this is what I would recommend that to use.</p>\n\n\n\n<p>So yeah, courses are not passive income by any means. But it has given me a lot in terms of just interacting with the people, seeing what they&#8217;re doing. I&#8217;ve learned a lot just from the people that I talk to. Because it&#8217;s not that I come up with this stuff all on my own. For sure, certain things I do my own research, and I know that from all projects, but a lot of stuff just comes from the people that are in the course.</p>\n\n\n\n<p>It&#8217;s more the other part, did I do anything wrong where I would say afterwards, would&#8217;ve done it this way? Sure, but there wasn&#8217;t anything terribly off. But it&#8217;s also my personality is that if you do teach things, obviously you like learning things, because you need to learn something to teach it. Yeah, I just have a high barrier for frustration. But that&#8217;s just me because as a principal engineer, those are the highest paid engineers in the organisation. And so if you want that kind of money, you need to bring something to the table.</p>\n\n\n\n<p>And so stuff is always difficult, whether it&#8217;s Full Site Editing, some kind of architecture stuff. So the whole thing is always just hard. So if that&#8217;s your day to day, it&#8217;s different than to somebody who, for a long time has just been building with the same stuff, and there weren&#8217;t many challenges. And now this is all changing and they&#8217;re like, oh wow, what&#8217;s going on? You know, this is all very difficult.</p>\n\n\n\n<p>But that&#8217;s why there are stuff like course and tutorials, right? Somebody does the hard work for you and just follow along. So that&#8217;s a thing.</p>\n\n\n\n<p>But what would actually, the biggest growth that I&#8217;ve seen is that when we talk about just what we do every day, you have to understand your clients in order to build a solution for them that is great. Because you have two types of developers. One developer just sits there and the client says, do this, and they do it, and that&#8217;s it.</p>\n\n\n\n<p>The other develop is more, the client says, do this, and then they&#8217;re saying like, why do you want this? Should it be this way? Should it be that way? Because a client cannot know as much about workers as you do. So obviously your opinion usually is better than theirs because they don&#8217;t have the technical background.</p>\n\n\n\n<p>But you also need to understand their needs. You need to understand their need without accepting their solution of it. And that&#8217;s really where I&#8217;ve done a lot of learning just also because of my course. You know, I have to do email marketing. How does email marketing work? I have zero clue. Just the tech of it. What do you write? What do people want to read? I have to look at analytics. I have to build sales pages. What goes on the sales page? And so all of that, now I have a lot more respect for marketing people because it&#8217;s a very, very hard job.</p>\n\n\n\n<p>And so that has been the biggest growth for me. Also writers, you know I write a lot. Previously when I did projects back in 2015, I used WordPress, but I didn&#8217;t write. So anything that they say to me was, I use it this way, and I didn&#8217;t have an idea of what they meant, because I wasn&#8217;t creating a lot of content in WordPress. I was just writing code.</p>\n\n\n\n<p>Now that I do create content I understand, okay. This is hard, that is hard. This is difficult. So it&#8217;s more that being closer to your clients and their needs that has allowed me to have that bigger growth. And also the challenge when it comes to building custom blocks, people get hung up, oh, it&#8217;s JavaScript. Yes, but so what? I mean, JavaScript is very learnable. It&#8217;s the most popular language out there. React is super popular. There are literally hundreds of thousands of people that are doing React.</p>\n\n\n\n<p>But the hard part is that, how do I build that block? What should it look like? What is the dialogue? What is the state when I put it in? Should it be in the sidebar? Should it be here? Just a slider. A slider on the front end, everybody knows what it looks like. But how do you represent six slides in the backend? You put them one below the other. Should there be a toggle? Should you be able to drag things? Is it all just one editing mask? Should you be able to move things around?</p>\n\n\n\n<p>So those are really the hard challenges right now, and that you only get when you actually talk to people of how they use WordPress. And I think that&#8217;s perspective is missing unfortunately, a lot in the community.</p>\n\n\n\n<p>[00:43:26] <strong>Nathan Wrigley:</strong> I&#8217;m glad that there are people like you who are giving that plenty of thought so that you can presumably contribute back, and give your opinions on how things should go from the admin side of things.</p>\n\n\n\n<p>Fränk, just before we say thank you and adieu, do you want to just drop a couple of links? Maybe a website where you can be found, or a, I don&#8217;t know, social media handle where people can get in touch with you if they wish to.</p>\n\n\n\n<p>[00:43:48] <strong>Fränk Klein:</strong> Yes. My website is wpdevelopment.courses, quite easy. Then I&#8217;m on X at fklux. So yeah, the rest we&#8217;re going to put into the show notes.</p>\n\n\n\n<p>[00:43:58] <strong>Nathan Wrigley:</strong> Okay, well, I will do that. Go to wptavern.com/podcast and search for the episode with Fränk Klein, and all of the links will be in the show notes there. So Fränk, once more, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:44:13] <strong>Fränk Klein:</strong> Thank you very much.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://x.com/fklux\">Fränk Klein</a>.</p>\n\n\n\n<p>Fränk is a principal engineer at Human Made and brings a wealth of experience from his extensive history with WordPress, having started with the platform in 2011. He previously worked at Automattic and now directs his expertise towards WP Development Courses, where he teaches block theme and custom block development.</p>\n\n\n\n<p>Fränk talks about the modernization of PHP within WordPress, a topic that often gets overshadowed by the hype around JavaScript. We get into Human Made&#8217;s work, an enterprise-focused WordPress agency renowned for serving high-profile clients such as the Harvard Gazette and TechCrunch. Fränk explains the intricate custom backend development needed to meet the complex requirements of enterprise clients, like sophisticated editorial workflows for clients like banks.</p>\n\n\n\n<p>Fränk provides a comprehensive breakdown of the Gutenberg project&#8217;s four phases: content editing, site customization, collaborative editing, and multilingual capabilities. We explore how FSE is transforming WordPress by integrating new editing tools and modernising the admin interface, moving the platform from its classic roots to a more dynamic, block-based editing environment.</p>\n\n\n\n<p>Fränk shares his unique perspective on the challenges and rewards of engineering and teaching within the WordPress ecosystem. He stresses the importance of understanding client needs and the necessity for developers to engage in continuous learning.</p>\n\n\n\n<p>We also talk about using traditional WordPress solutions and third-party page builders like Bricks, Beaver Builder, and Elementor. Fränk argues for the streamlined, block-based systems offered by WordPress Core, citing both financial and technical benefits.</p>\n\n\n\n<p>Our conversation continues into the broader implications of WordPress&#8217;s ongoing evolution; the significant admin interface redesign and its impact on users and agencies. Fränk discusses the challenges users face with these changes and the importance of improving communication within the WordPress community to facilitate smoother transitions.</p>\n\n\n\n<p>Towards the end, Fränk talks about his experiences with course creation and content maintenance, particularly given the fast-paced changes in WordPress features. He emphasises the need for a solid grasp of foundational web development concepts to fully leverage the platform&#8217;s evolving tools.</p>\n\n\n\n<p>If you&#8217;re keen on understanding how full site editing and other WordPress innovations can enhance your projects, and wish to gain insights into the evolving WordPress landscape, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://humanmade.com/\">Human Made</a></p>\n\n\n\n<p><a href=\"https://wpdevelopment.courses/\">WP Development Courses</a></p>\n\n\n\n<p><a href=\"https://news.harvard.edu/gazette/\">Harvard Gazette</a></p>\n\n\n\n<p><a href=\"https://techcrunch.com/\">TechCrunch</a></p>\n\n\n\n<p><a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">We Called it Gutenberg for a Reason</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/\">Developer Blog</a></p>\n\n\n\n<p><a href=\"https://joshhall.co/349-is-wordpress-for-old-people-with-mark-szymanski/\">Is WordPress for Old People?</a> Podcast with Josh Hall and Mark Szymanski</p>\n\n\n\n<p><a href=\"https://bricksbuilder.io/\">Bricks</a></p>\n\n\n\n<p><a href=\"https://www.wpbeaverbuilder.com/\">Beaver Builder</a></p>\n\n\n\n<p><a href=\"https://elementor.com/\">Elementor</a></p>\n\n\n\n<p><a href=\"https://www.notion.so/\">Notion</a></p>\n\n\n\n<p><a href=\"https://www.hubspot.com/products/marketing/landing-pages\">HubSpot Pages</a></p>\n\n\n\n<p><a href=\"https://www.clickfunnels.com/\">ClickFunnels</a></p>\n\n\n\n<p><a href=\"https://x.com/fklux\">Fränk on X</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, 21 Nov 2024 09:45:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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: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:94:\"WPTavern: WP Engine Updates Its Original Legal Complaint Against Automattic and 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=180085\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/wp-engine-updates-its-original-legal-complaint-against-automattic-and-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5395:\"<p>After Automattic launched the <a href=\"https://wordpressenginetracker.com/\">WP Engine Tracker</a> website to monitor the number of websites departing WP Engine hosting, WP Engine updated its ongoing lawsuit against Automattic and its founder, Matt Mullenweg.</p>\n\n\n\n<p>The <a href=\"https://storage.courtlistener.com/recap/gov.uscourts.cand.437474/gov.uscourts.cand.437474.51.0.pdf\">revised document</a> with 144 pages, opens with strong accusations: “This is a case about abuse of power, extortion, and greed. The misconduct at issue is especially troubling because it took place within the WordPress open-source software community, which was built on promises of freedom to build, run, change, and redistribute without barriers or restrictions. Those promises were betrayed by the wrongful actions of a few defendants, to the detriment of the broader community—including WPE.”</p>\n\n\n\n<p>The filing continues: “WPE brings this suit to stop the defendants from further harming WPE, its customer relationships, and the entire WordPress ecosystem, and to hold them accountable for their broken promises and misconduct.”</p>\n\n\n\n<p>The document also raises concerns about trademark misuse, alleging that the defendants Automattic &amp; Matt have used their claimed trademark to violate antitrust laws. WP Engine claims to have used the terms &#8220;WordPress&#8221; and &#8220;WooCommerce&#8221; without issue since 2010 and 2018, respectively, even with Automattic&#8217;s knowledge. In fact, Automattic had invested in WP Engine in 2011 and remained an investor until 2018, and the companies maintained regular communications during that period.</p>\n\n\n\n<p>The filing highlights an acknowledgment from Mullenweg years back when he publicly stated that WP Engine’s use of “WP” in its company name is entirely proper and serves as an example for other companies: “We ask you to not use WordPress in your domain name, which we’ve done for four years now. So, use like WP, like there’s WPEngine, call it WPEngine instead of WordPressEngine.com or something like that.”</p>\n\n\n\n<p>Further, WP Engine argues that Mullenweg&#8217;s statements indicate Automattic’s knowledge of their legitimate use of the WordPress name and suggest that the recent trademark infringement claims are a strategy to harm competitors. The suit suggests that Automattic&#8217;s actions appear to be a deliberate attempt to undermine WP Engine through anticompetitive tactics.</p>\n\n\n\n<p>WP Engine claims these actions are causing severe damage to its business and reputation, including:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Loss of access to WordPress.org functionality.</li>\n\n\n\n<li>Customer attrition due to Automattic&#8217;s actions.</li>\n\n\n\n<li>Costly workarounds as WPE expends significant resources to update plugins and serve customers.</li>\n\n\n\n<li>Loss of key products, including the ACF plugin and its millions of users.</li>\n\n\n\n<li>Reputational harm and loss of goodwill in the WordPress community.</li>\n</ul>\n\n\n\n<p>WP Engine argues that Automattic’s conduct has harmed four key markets relevant to the dispute &#8211; Web content management systems, WordPress web hosting services, WordPress custom field plugins and Distribution of WordPress plugins. </p>\n\n\n\n<p>The lawsuit asserts that Automattic is attempting to raise costs for competitors by forcing WP Engine and others to pay licensing fees for trademarks Automattic claims to control. This, WP Engine argues, constitutes a violation of antitrust laws by attempting to monopolize key sectors of the WordPress ecosystem.</p>\n\n\n\n<p>WP Engine also shared that even their CEO was threatened, and &#8220;Automattic has recently escalated its tactics by actively recruiting hundreds of WPE employees, in an apparent effort to weaken WPE by sowing doubts about the company’s future and enticing WPE’s employees to join Automattic.&#8221;</p>\n\n\n\n<p>The filing invokes multiple legal frameworks, including the <a href=\"https://www.archives.gov/milestone-documents/sherman-anti-trust-act\">Sherman Act</a>, the <a href=\"https://www.law.cornell.edu/wex/lanham_act\">Lanham Act</a>, <a href=\"https://www.classlawgroup.com/antitrust/state-laws/california-cartwright-act\">California Cartwright Act</a>, and the <a href=\"https://en.wikipedia.org/wiki/Computer_Fraud_and_Abuse_Act\">Computer Fraud and Abuse Act</a>.</p>\n\n\n\n<p>Automattic <a href=\"https://x.com/automattic/status/1857080476776767975\">tweeted</a>, &#8220;WordPress isn’t just a software–it’s a movement. This movement, and the community that powers it, are why WordPress now powers over 40% of the web. That’s why Automattic and <a href=\"https://x.com/photomatt\">@photomatt</a> are taking action to protect it from misuse by those who profit without giving back.&#8221; They also published <a href=\"https://automattic.com/2024/protecting-wordpress/\">Defending Open Source: Protecting the Future of&nbsp;WordPress</a>. </p>\n\n\n\n<p>Meanwhile, the Observer <a href=\"https://observer.com/2024/11/wordpress-founder-matt-mullenweg-energized-amid-wp-engine-battle/\">reported</a> that Mullenweg claims the whole saga is a blip within WordPress’s wider mission to defend the democratization of publishing, commerce and messaging. “I’ve been doing this for 21 years and I hope to do it the rest of my life,” he said. “This is a small chapter of a very long journey.”</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, 20 Nov 2024 17:21: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:7:\"Jyolsna\";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:83:\"Do The Woo Community: Host James Kemp Takes the Role of Core Product Manager at Woo\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86965\";s:7:\"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:87:\"https://dothewoo.io/blog/host-james-kemp-takes-the-role-of-core-product-manager-at-woo/\";s: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:126:\"The team here at Do the Woo are excited to hear the news that James has been moved up to Core Product Manager for WooCommerce.\";s: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, 20 Nov 2024 10:12: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:5:\"BobWP\";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:61:\"HeroPress: From Attendee to Contributor: My WordPress Journey\";s:7:\"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=7651\";s:7:\"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:172:\"https://heropress.com/essays/from-attendee-to-contributor-my-wordpress-journey/#utm_source=rss&utm_medium=rss&utm_campaign=from-attendee-to-contributor-my-wordpress-journey\";s: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:5659:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3024/11/111924.webp\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: After nearly two decades, the WordPress community remains its greatest strength.\" />\nHere is Akshaya reading her own story aloud.\n\n\n\n\n\n<p>Howdy, friends!</p>\n\n\n\n<p>I’m Akshaya Rane, a fellow WordPress enthusiast from the vibrant suburbs of Mumbai, India. You’ll often find me at WordPress meetups, WordCamps, and Do Actions, eagerly soaking in the energy of this incredible community.</p>\n\n\n\n<p>It all began at my first WordCamp Mumbai. The enthusiasm in the air, the insightful sessions, and the shared passion for WordPress left me inspired. At the time, I couldn’t imagine myself on that stage, yet here I am today, sharing my journey with you.</p>\n\n\n\n<h2 class=\"kt-adv-heading7651_9919d8-02 wp-block-kadence-advancedheading\"><strong>Discovering the Joy of Contribution</strong></h2>\n\n\n\n<p>A few years later, WordCamp Mumbai hosted a Contribution Day, and my world opened up. I learned about the many ways to give back—Core, Meta, Photos, Themes, Translations, and more. My first contribution was a ticket in Core, and from there, I never looked back.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Earning a few contribution badges along the way has been an honor, but the real reward has been the learning and the connections made with like-minded people worldwide.</p>\n</blockquote>\n\n\n\n<p>Recently, I had the privilege of serving as a release coordinator for WordPress 6.4 and 6.5. Working alongside such talented individuals from around the globe has been humbling and inspiring. If this sounds daunting, trust me—it wasn’t something I planned for. I simply embraced the opportunities that came my way and poured my time and effort into them.</p>\n\n\n\n<h2 class=\"kt-adv-heading7651_c36762-8e wp-block-kadence-advancedheading\"><strong>Embracing the Speaker’s Stage</strong></h2>\n\n\n\n<p>My speaker journey began with a #WPDiversity workshop led by Jill Binder. She simplified the process of becoming a speaker, guiding us from topic selection to proposal submission. While it took me a few months to act on it, the group’s encouragement kept me going.</p>\n\n\n\n<p>Finally, I submitted my first application to WordCamp Kerala 2023, and to my surprise, I was selected! </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>It was both exciting and nerve-wracking, but delivering that talk and hearing how others related to my experiences made it all worthwhile.</p>\n</blockquote>\n\n\n\n<p>Since then, I’ve delivered six to seven talks at various WordCamps, including panel discussions. These events have allowed me to explore new places, experience diverse cultures, savor local cuisines, and, most importantly, connect with fellow enthusiasts.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/3024/11/akshaya_at_wordcamp.webp\"><img width=\"1024\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3024/11/akshaya_at_wordcamp-1024x1024.webp\" alt=\"Akshaya speaking at WordCamp Kerala.\" class=\"wp-image-7654\" /></a>\n\n\n\n<p>If you’re considering stepping onto the WordCamp stage, I’ve documented my speaker journey<a href=\"https://akshayar.online/from-novice-to-wordcamp-speaker-navigating-the-journey/\"> here</a>. I hope it helps you get started!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-sharing-and-growing-together\"><strong>Sharing and Growing Together</strong></h2>\n\n\n\n<p>As I delved deeper into contributions, I wanted to share the experience with my team. With support from my company, we organized a WordPress Contribution Day, which was a great success. Seeing my teammates engage and grow was incredibly rewarding.</p>\n\n\n\n<p>Being part of the 6.4 and 6.5 release teams taught me the value of empathy, time management, and collaboration. Every small change in WordPress reflects the dedication of contributors ensuring the platform remains reliable for countless businesses worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-problem-solving-through-wordpress\"><strong>Problem-Solving Through WordPress</strong></h2>\n\n\n\n<p>In my day-to-day role as a Project Manager, I specialize in solving business challenges. One project that stands out involved migrating subscriptions to WooCommerce. With careful planning and execution, we ensured seamless integration, minimizing disruption and protecting the client’s business.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>These experiences remind me why WordPress is a cornerstone for so many businesses—it’s not just a tool; it’s a community-powered solution.</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-heart-of-wordpress-community\"><strong>The Heart of WordPress: Community</strong></h2>\n\n\n\n<p>After nearly two decades, the WordPress community remains its greatest strength. It’s a place where we help each other grow and learn, and I am deeply grateful to be part of it.</p>\n\n\n\n<p>I want to thank Topher for this opportunity to share my story on HeroPress, a platform filled with inspiring journeys. If my story resonates with you, feel free to reach out through my site. Whether it’s learning, connecting, or collaborating, I’d love to hear from you.</p>\n\n\n\n<p>Let’s continue building and thriving together!</p>\n\n\n\n<p></p>\n<p>The post <a href=\"https://heropress.com/essays/from-attendee-to-contributor-my-wordpress-journey/\">From Attendee to Contributor: My WordPress Journey</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Nov 2024 02:30: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:12:\"Akshaya Rane\";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:87:\"WPTavern: WordPress 6.7.1 Scheduled for November 21, 2024, to Fix Bugs in WordPress 6.7\";s:7:\"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=180043\";s:7:\"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:96:\"https://wptavern.com/wordpress-6-7-1-scheduled-for-november-21-2024-to-fix-bugs-in-wordpress-6-7\";s: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:2120:\"<p>WordPress 6.7, “<a href=\"https://wptavern.com/wordpress-6-7-rollins-released-with-new-default-theme-wordpress-org-experiences-outage\">Rollins</a>,” was released on November 12, 2024, but WordPress.org experienced increased error rates after the release. Several users reported getting 502 “Bad Gateway” errors and the release <a href=\"https://www.reddit.com/r/Wordpress/comments/1gr0ftk/wordpress_67_update_messed_up_my_websiteam_i_the/?rdt=56607\">messing up their websites</a>. </p>\n\n\n\n<p>WordPress contributors kept a close eye on the complaints and have decided to release<a href=\"https://make.wordpress.org/core/2024/11/19/wordpress-6-7-1-release-schedule/\"> WordPress 6.7.1</a> on November 21, 2024, to address bugs introduced in version 6.7.</p>\n\n\n\n<p>WordPress Core Committer Jonathan Desrosiers emphasized the release&#8217;s targeted approach, “The goal is to deliver a small handful of high-impact bug fixes for added stability prior to the busy online commerce holiday week consisting of Black Friday, Cyber Monday, and Giving Tuesday.”</p>\n\n\n\n<p>Key fixes planned for WordPress 6.7.1 include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Resolving issues with sizes=auto causing small images.</li>\n\n\n\n<li>Fixing translation errors.</li>\n\n\n\n<li>Addressing problems with uncategorized patterns breaking the editor.</li>\n\n\n\n<li>Correcting zoom-in misalignment issues</li>\n\n\n\n<li>Fixing the missing zoom-out button when plugins add toolbar items.</li>\n</ul>\n\n\n\n<p>Several other bugs are being reviewed and may be included if fixes are ready, including images being unexpectedly converted to HEIC files with temporary names when using the Upload button in Safari, broken category management in the Classic Editor, and changes to CSS targets on the login screen affecting custom logos.</p>\n\n\n\n<p>The fast-follow release will be led by Jonathan Desrosiers and Carlos Bravo. Contributors interested in volunteering are encouraged to comment on the announcement post or join the conversation in the &nbsp;<a href=\"https://wordpress.slack.com/archives/C07BTF54N68\">#6-7-release-squad channel</a> on Slack.</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 Nov 2024 16:49:21 +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:7:\"Jyolsna\";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:68:\"Do The Woo Community: Cutting Credit Card Costs with Konrad Holtkamp\";s:7:\"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:28:\"https://dothewoo.io/?p=86946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/cutting-credit-card-costs-with-konrad-holtkamp/\";s: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:181:\"In this episode, Adam and Bob chat with Konrad from FLIZpay about reducing credit card fees in WooCommerce. The conversation covers payment options, costs, and innovative solutions.\";s: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 Nov 2024 10:49:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:71:\"Akismet: Version 5.3.5 of the Akismet WordPress plugin is available now\";s:7:\"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:28:\"http://akismet.com/?p=284243\";s:7:\"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://akismet.com/blog/version-5-3-5-of-the-akismet-wordpress-plugin-is-available-now/\";s: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:1083:\"<p>Version 5.3.5 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available for&nbsp;download.</p>\n\n<p>There are a number of bug fixes and improvements and we recommend upgrading if you&#8217;re using an earlier version of the&nbsp;plugin.</p>\n\n<p><strong>This new version of the plugin replaces v5.3.4</strong>, which was briefly available from wordpress.org earlier today. This version contained code that had compatibility issues with versions of PHP earlier than 7.3. If you were affected by errors on installing this version, we&#8217;re very sorry for any difficulties this may have caused. We are adding extra automated testing to prevent this from happening again in the future. These issues are addressed in the current version,&nbsp;v5.3.5.</p>\n\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&nbsp;directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Nov 2024 03:07:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser 🏔\";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:75:\"Gravatar: Stand Out in the Digital Crowd: Tips For a Winning Online Profile\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2405\";s:7:\"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:59:\"https://blog.gravatar.com/2024/11/18/create-online-profile/\";s: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:16947:\"<p>Nowadays, first impressions happen online as often (or even <em>more often</em>) than they do in person. That&#8217;s why having a professional digital profile is a must-have. Some people think that being professional equals a nice photo and listing your work experiences neatly on LinkedIn. But there’s so much more to it.</p>\n\n\n\n<p>A good online profile lets you strategically present yourself to align with your career goals and catch the eye of potential employers or clients.</p>\n\n\n\n<p>Thankfully, with the right tools, you can create a consistent, professional presence across thousands of platforms without breaking a sweat. Ready to learn how? Let&#8217;s discover the secrets to crafting an online profile that truly shines.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Implement essential strategies for a winning online profile</strong></h2>\n\n\n\n<p>Creating an online profile that turns heads starts with defining your <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">personal brand</a>. Think about what makes you unique. What skills, experiences, and values set you apart from the crowd? It’s not an easy thing to define, but once you do, everything else becomes much easier.&nbsp;</p>\n\n\n\n<p>Every element of your profile, from your bio to your achievements, should consistently reflect this brand. Here are some strategies to keep in mind:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Be authentic.</strong> Genuinely displaying your experiences and aspirations builds trust. People can spot insincerity from a mile away, so keep it real.</li>\n\n\n\n<li><strong>Use keywords strategically. </strong>Sprinkle industry-specific terms throughout your profile to boost your searchability. But don&#8217;t go overboard – it should still read naturally.</li>\n\n\n\n<li><strong>Craft a compelling narrative.</strong> Instead of a dry list of jobs, tell the story of your career. What challenges have you overcome? What unique value do you bring?</li>\n\n\n\n<li><strong>Optimize for AI-driven recruitment tools.</strong> Many companies use automated systems to screen candidates. Use relevant keywords to increase your chances of making it past these digital gatekeepers.</li>\n\n\n\n<li><strong>Showcase tangible results.</strong> Don&#8217;t just say you&#8217;re great – <em>prove it</em>. Use specific metrics and outcomes to demonstrate your impact.</li>\n\n\n\n<li><strong>Leverage multimedia.</strong> A picture is worth a thousand words, and a video might be worth even more. Consider incorporating presentations or infographics to make your profile more engaging.</li>\n</ul>\n\n\n\n<p>And remember, your profile isn&#8217;t set in stone. Keep it current by regularly updating your information to reflect your latest achievements and skills.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 2: Choose the right platforms for your professional goals</strong></h2>\n\n\n\n<p>While <a href=\"https://www.linkedin.com/\">LinkedIn</a> is often the go-to for professionals, it&#8217;s not the only game in town. The trick here is to find platforms where your industry peers hang out. For developers, <a href=\"https://github.com/\">GitHub</a> is a must. Designers? Check out <a href=\"https://www.behance.net/search/projects\">Behance</a> or <a href=\"https://dribbble.com/\">Dribbble</a>.</p>\n\n\n\n<p>And here&#8217;s a pro tip: it&#8217;s better to have a strong presence on a few platforms than a weak one on many. Quality trumps quantity every time. Focus your efforts on platforms that align with your career objectives.</p>\n\n\n\n<p>Don&#8217;t just set it and forget it, though. Use data-driven tools to track engagement and fine-tune your presence on each platform.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Leverage Gravatar for universal profile syncing</strong></h3>\n\n\n\n<p>Now, let&#8217;s talk about a tool that can make the whole process a lot easier: <a href=\"https://gravatar.com/\">Gravatar</a>.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"343\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-new-homepage-2.png?w=660\" alt=\"Gravatar homepage\" class=\"wp-image-2406\" />\n\n\n\n<p>Gravatar makes profile management easy by acting as a central point for your online identity. The platform connects your profile picture, biography, and professional information – it can be used as a main profile, an online resume, a digital business card, or a <a href=\"https://blog.gravatar.com/2024/07/31/better-links-simple-messaging-developer-tools-and-more/\">link-in-bio tool</a>.&nbsp;</p>\n\n\n\n<p>It has one big advantage – when you update your information once in Gravatar, it syncs with each connected platform, including <a href=\"https://slack.com/\">Slack</a>, <a href=\"https://github.com/\">GitHub</a>, <a href=\"https://wordpress.com/\">WordPress</a>, <a href=\"https://openai.com/\">OpenAI</a>, and more. On top of that, the platform&#8217;s <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">structured layout and simple design</a> present your skills, experiences, verified profiles, and portfolio in a professional format, making it an effective tool for establishing a unified personal brand.</p>\n\n\n\n<img width=\"660\" height=\"333\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-profile-links-new.png?w=660\" alt=\"Verified links feature of Gravatar profile\" class=\"wp-image-2408\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3: Select the perfect profile picture and craft an engaging bio</strong></h2>\n\n\n\n<p>Your <a href=\"https://blog.gravatar.com/2024/07/19/wordpress-profile-picture/\">profile picture</a> is often the first thing people see, so make it count. Here&#8217;s how:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Invest in a high-quality, professional headshot. </strong>You don&#8217;t need to break the bank, but a blurry selfie won&#8217;t cut it.</li>\n\n\n\n<li><strong>Dress the part. </strong>Wear something that matches your industry&#8217;s standards. A suit might be perfect for finance, while a more casual look could work for tech.</li>\n\n\n\n<li><strong>Aim for friendly and approachable</strong>. A warm smile can go a long way in making a positive first impression.</li>\n\n\n\n<li><strong>Keep the background simple.</strong> You&#8217;re the star of this show, not your bookshelf or your cat (as adorable as they might be).</li>\n</ul>\n\n\n\n<p>Now, let&#8217;s talk about your bio. It&#8217;s your elevator pitch in written form, and it needs to pack a punch:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Begin with a strong statement that encapsulates your professional value.</strong> Example: &#8220;<em>Enterprise software architect specializing in scalable cloud solutions with 15 years of experience leading distributed teams.</em>&#8220;</li>\n\n\n\n<li><strong>Identify your unique strengths and expertise.</strong> Focus on specific technical abilities, industry knowledge, or specialized experience that differentiates you from others in your field.</li>\n\n\n\n<li><strong>Write in clear, direct language. </strong>Instead of &#8220;<em>Results-driven professional,</em>&#8221; try &#8220;<em>Increased client retention by 40% through implementing automated customer service systems.</em>&#8220;</li>\n\n\n\n<li><strong>Adapt your writing style to your industry&#8217;s expectations.</strong> Software developers might focus on technical achievements, while marketing professionals might highlight creative campaigns and measurable outcomes.</li>\n\n\n\n<li><strong>Structure your bio to address your target audience&#8217;s needs</strong>. For recruiters, emphasize career progression and achievements. For potential clients, focus on problems you&#8217;ve solved and value delivered. For industry peers, highlight your contributions to the field and areas of expertise.</li>\n</ul>\n\n\n\n<p><strong>Pro tip: </strong>Try A/B testing different versions of your bio and profile picture. See which ones get more engagement and refine accordingly.</p>\n\n\n\n<p>And here&#8217;s where Gravatar comes in handy again. Use it as your central hub, then create platform-specific &#8220;satellite&#8221; bios that link back to your comprehensive Gravatar profile. This way, you can tailor your message for each platform while maintaining a consistent core identity.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4: Showcase skills and achievements effectively</strong></h2>\n\n\n\n<p>Demonstrating your skills and achievements is like showing your professional superpowers. Here&#8217;s how to do it right:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Prioritize relevant skills. </strong>Focus on abilities that align with your current career goals. Not every skill needs to be listed – quality beats quantity.</li>\n\n\n\n<li><strong>Use quantifiable achievements. </strong>Numbers speak louder than words. Did you increase sales by 30%? Mention it.</li>\n\n\n\n<li><strong>Highlight certifications and awards. </strong>These serve as third-party validation of your expertise.</li>\n\n\n\n<li><strong>Share testimonials. </strong>Let others sing your praises. A glowing recommendation from a colleague or client can be incredibly powerful.</li>\n\n\n\n<li><strong>Consider using a skills matrix or visual representation. </strong>This can make it easy to scan your abilities at a glance.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 5: Optimize your profile for recruiters and job searches</strong></h2>\n\n\n\n<p>Optimizing your profile for both human recruiters and applicant tracking systems (ATS) requires strategic planning and precise execution:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Start with targeted industry terminology. </strong>Research job descriptions in your desired roles and incorporate relevant terms naturally throughout your profile. For example, a UX designer might include specific methodologies like &#8220;user research,&#8221; &#8220;wireframing,&#8221; and &#8220;usability testing.&#8221;</li>\n\n\n\n<li><strong>Focus on detailed, measurable accomplishments in each role.</strong> Instead of &#8220;Led marketing campaigns,&#8221; write &#8220;Led 12 marketing campaigns generating $2M in revenue through targeted email and social media strategies.&#8221;</li>\n\n\n\n<li><strong>Boost visibility through strategic content sharing. </strong>Post or share industry analysis, project case studies, or professional insights weekly. This activity signals to recruiters that you&#8217;re actively engaged in your field.</li>\n\n\n\n<li><strong>Review your privacy settings carefully. </strong>Enable profile visibility for recruiters and ensure your contact information is current. LinkedIn&#8217;s &#8220;Open to Work&#8221; feature can be particularly effective when used selectively.</li>\n\n\n\n<li><strong>Track your profile&#8217;s performance using built-in analytics tools.</strong> Monitor profile views and search appearances, then adjust your content strategy based on these metrics.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 6: Build and engage with your network</strong></h2>\n\n\n\n<p>Building a strong professional network requires strategic outreach and meaningful engagement. Here&#8217;s how to maximize your networking effectiveness:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Craft personalized connection requests that demonstrate genuine interest.</strong> Example: &#8220;<em>Your presentation on AI ethics at the Tech Summit was fascinating. I&#8217;d appreciate connecting to discuss your insights on responsible AI development.</em>&#8220;</li>\n\n\n\n<li><strong>Participate actively in professional groups related to your expertise. </strong>Share practical insights, answer technical questions, and initiate discussions about industry trends. Quality contributions establish you as a knowledgeable peer.</li>\n\n\n\n<li><strong>Implement a structured engagement strategy.</strong> Dedicate 15 minutes daily to interact with industry content, focusing on thoughtful comments that add value to the discussion.</li>\n\n\n\n<li><strong>Leverage virtual professional events strategically.</strong> Research speakers and attendees beforehand, prepare relevant questions, and follow up with meaningful connection requests afterward.</li>\n</ul>\n\n\n\n<p>Focus on building mutually beneficial relationships by offering assistance <em>before </em>asking for favors. Your network&#8217;s strength lies in the value exchange between members.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 7: Continuous improvement and profile maintenance</strong></h2>\n\n\n\n<p>Maintaining an effective online presence requires systematic monitoring and regular updates to reflect your professional growth.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Implement a structured review schedule.</strong> Set quarterly calendar reminders to assess your profile&#8217;s relevance and completeness. This means your online presence accurately reflects your current capabilities and achievements.</li>\n\n\n\n<li><strong>Document professional accomplishments as they occur.</strong> Create a dedicated spreadsheet or note system to track new certifications, project outcomes, and quantifiable achievements. This makes profile updates more efficient and comprehensive.</li>\n\n\n\n<li><strong>Use platform analytics effectively. </strong>Monitor key metrics such as profile views, search appearances, and engagement rates. Use this data to identify patterns and optimize your content strategy accordingly.</li>\n\n\n\n<li><strong>Establish a peer review system. </strong>Develop relationships with respected colleagues who can provide specific, actionable feedback on your profile&#8217;s effectiveness and areas for improvement.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common mistakes to avoid when creating an online profile</strong></h2>\n\n\n\n<p>Certain profile missteps can significantly diminish your professional impact. Here&#8217;s how to avoid these common pitfalls:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Incomplete sections signal a lack of attention to detail.</strong> Fill out each section thoroughly, but purposefully. A partial employment history or missing education details can raise red flags for recruiters.</li>\n\n\n\n<li><strong>Outdated information undermines credibility. </strong>Remove obsolete skills, update employment status promptly, and refresh contact details immediately when they change.</li>\n\n\n\n<li><strong>Unprofessional imagery damages first impressions.</strong> Replace casual photos, low-resolution images, or group pictures with a clear, professional headshot.</li>\n\n\n\n<li><strong>Generic descriptions waste valuable profile space.</strong> Replace overused phrases like &#8220;<em>team player</em>&#8221; or &#8220;<em>results-driven</em>&#8221; with specific examples: &#8220;<em>Led cross-functional team of 8 to deliver $1M project under budget.</em>&#8220;</li>\n\n\n\n<li><strong>Inconsistent information across platforms creates confusion.</strong> Ensure your job titles, dates, and accomplishments align across all professional profiles.</li>\n\n\n\n<li><strong>Neglecting privacy settings can expose sensitive information. </strong>Review and adjust visibility settings regularly, particularly when sharing personal updates or career changes.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Take charge of your online identity with Gravatar today</strong></h2>\n\n\n\n<p>A polished online presence makes a measurable difference in professional advancement and networking opportunities. Each profile update, every connection, and all interactions contribute to your professional story.</p>\n\n\n\n<p>Gravatar offers a sophisticated solution to streamline this process:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sync your profile across thousands of platforms automatically, from GitHub to Slack and <a href=\"https://stackoverflow.com/\">Stack Overflow</a>.</li>\n\n\n\n<li>Create a customizable profile that functions as your professional hub.</li>\n\n\n\n<li>Integrate social media profiles, portfolios, and website links.</li>\n\n\n\n<li>Control your data sharing with a privacy-first design.</li>\n\n\n\n<li>Personalize your presence with custom domain support – available through WordPress.com domain registration.</li>\n</ul>\n\n\n\n<p>Think of Gravatar as your professional command center. It eliminates the hassle of managing multiple profiles while ensuring your professional identity remains consistent and compelling.</p>\n\n\n\n<p>Ready to make your mark? <a href=\"https://wordpress.com/log-in/link?client_id=1854&redirect_to=https%3A%2F%2Fpublic-api.wordpress.com%2Foauth2%2Fauthorize%3Fclient_id%3D1854%26response_type%3Dcode%26blog_id%3D0%26state%3De703ba11e8d0b0894bbbc4731bddd3a0fd4e1d8aa36b3519f01cf7305f56c738%26redirect_uri%3Dhttps%253A%252F%252Fgravatar.com%252Fconnect%252F%253Faction%253Drequest_access_token%26gravatar_from%3Dsignup%26from-calypso%3D1&gravatar_from=signup\">Create your Gravatar profile now</a> and transform the way you manage your professional presence. Your next opportunity might be just one profile update away.</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 Nov 2024 22:31:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";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:22:\"Matt: Observer Article\";s:7:\"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:23:\"https://ma.tt/?p=130235\";s:7:\"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:39:\"https://ma.tt/2024/11/observer-article/\";s: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:259:\"<p>Alexandra Tremayne-Pengelly writes for the Observer, <a href=\"https://observer.com/2024/11/wordpress-founder-matt-mullenweg-energized-amid-wp-engine-battle/\">WordPress Founder Matt Mullenweg Is ‘More Energized’ Than Ever Amid WP Engine Battle</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Nov 2024 18:56:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"Do The Woo Community: A Look at the State of the Woo 2025, Driving the Future\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86685\";s:7:\"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://dothewoo.io/blog/a-look-at-the-state-of-the-woo-2025-driving-the-future/\";s: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:180:\"The State of the Woo this year included major innovations, a commitment to open-source, community involvement, and future enhancements aimed at simplifying ecommerce for merchants.\";s: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 Nov 2024 10: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:5:\"BobWP\";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:89:\"Do The Woo Community: Friday Shares: This Week’s Must-Reads and Community Highlights v4\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86927\";s:7:\"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:89:\"https://dothewoo.io/blog/friday-shares-this-weeks-must-reads-and-community-highlights-v4/\";s: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:59:\"Do the Woo\'s curated post of featured content for the week.\";s: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 Nov 2024 15:17:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:103:\"WPTavern: WordPress 6.7 “Rollins” Released With New Default Theme, WordPress.org Experiences Outage\";s:7:\"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=179550\";s:7:\"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:107:\"https://wptavern.com/wordpress-6-7-rollins-released-with-new-default-theme-wordpress-org-experiences-outage\";s: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:6659:\"<p>WordPress 6.7, code-named “Rollins,” was released on November 12, introducing a new default theme, Twenty Twenty-Five, zoom out view, and new powerful APIs. The <a href=\"https://wordpress.org/news/2024/11/rollins/\">announcement post</a> stated, “Rollins’ bold and exploratory style resonates with WordPress’ own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.”</p>\n\n\n\n<p>The new default theme, <a href=\"https://make.wordpress.org/core/2024/08/15/introducing-twenty-twenty-five/\">Twenty Twenty-Five</a>, “embodies ultimate flexibility and adaptability.” Fully compatible with the Site Editor, it offers multilingual font support, diverse color palettes, and an extensive set of patterns to make site customization easier.</p>\n\n\n\n<p>The new zoom out mode enhances the editing experience, focusing on broader content patterns rather than individual blocks, enabling users to work with content from a higher, less granular perspective.</p>\n\n\n\n<p>WordPress 6.7 also improves media handling, adding HEIC image support, auto-sizing for lazy-loaded images, and more background image support at individual and global levels. The release also has tons of site editor improvements and improved font management with deep styling capabilities.</p>\n\n\n\n<p>Now, the Query Loop block automatically inherits queries from the default template. WordPress 6.7 also stabilized <a href=\"https://developer.wordpress.org/news/2024/11/05/how-to-add-content-only-editing-support-to-a-block/\">content-only editing</a> for blocks.&nbsp;</p>\n\n\n\n<p>Performance has also been boosted with faster pattern loading, optimized previews in the data views component, enhanced PHP 8+ compatibility, removal of deprecated code, auto-sizing for lazy-loaded images, and more efficient tag processing within the HTML API.</p>\n\n\n\n<p>This release has given importance to accessibility, too. “65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.”</p>\n\n\n\n<p>Two new APIs—Template Registration API and Preview Options API—debut with this release, alongside enhancements to the Interactivity, Block Bindings, and HTML APIs.</p>\n\n\n\n<p>As the final major release of 2024, WordPress 6.7 reflects the work of more than 780 contributors and includes over 340 updates and fixes. For further insights, check out the <a href=\"https://make.wordpress.org/core/2024/10/23/wordpress-6-7-field-guide/\">Field Guide</a>, <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.7/\">WordPress 6.7 documentation</a>, <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-7/\">Developer Notes</a> or Jamie Marsland’s <a href=\"https://www.youtube.com/watch?v=MSTwyNVcO6g\">250-second video</a> on the highlights. You can also watch the <a href=\"https://www.youtube.com/watch?v=Ok6JKHMAkH8\">Official WordPress 6.7 release video</a> for an overview.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress.org Experienced Increased Error Rates After the WordPress 6.7 Release</h2>\n\n\n\n<p>Several people reported getting 502 “Bad Gateway” errors and Systems Wrangler at Automattic, Barry, has <a href=\"https://status.wordpress.org/2024/11/14/on-nov-12th-2024-beginning/\">confirmed</a> that WordPress.org experienced intermittent elevated latency and increased error rates on November 12, which affected both the WordPress.org website and API.&nbsp;</p>\n\n\n\n<p>He has shared more details, “This initial incident was quickly resolved by the team, but reoccurred briefly on Nov 13 at 0110 UTC, 0900 UTC, and 1400 UTC. The underlying cause was network saturation of the hosting provider’s network that hosts some of the WordPress.org infrastructure. Although all of the servers and switch interfaces that our team has visibility into were within normal levels of utilization, there were some upstream network bottlenecks that created increased latency and packet loss that affected the WordPress.org environment.”&nbsp;</p>\n\n\n\n<p>They are still working to resolve the underlying issues.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Future of WordPress and Russian Contributions</h2>\n\n\n\n<p>Robert DeVore <a href=\"https://x.com/deviorobert/status/1849264002632704350\">drew the attention</a> of the WordPress community to Biden&#8217;s Executive Order 14071. He wondered what happens to WordPress when it can no longer accept contributors from Russia.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Here\'s a question for the WordPress Community <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f914.png\" alt=\"🤔\" class=\"wp-smiley\" /><br /><br />What happens to WordPress when it can no longer accept contributors from Russia? <br /><br />What happens when Automattic can no longer employ Russian employees to work on WordPress?<br /><br />Crazy talk? IDK about that <img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f937-200d-2642-fe0f.png\" alt=\"🤷‍♂️\" class=\"wp-smiley\" /><br /><br />\"Biden\'s Executive Order… <a href=\"https://t.co/wlGBIusDRm\">pic.twitter.com/wlGBIusDRm</a></p>&mdash; Robert DeVore (@deviorobert) <a href=\"https://twitter.com/deviorobert/status/1849264002632704350?ref_src=twsrc%5Etfw\">October 24, 2024</a></blockquote>\n</div>\n\n\n\n<p>A WordPress.org spokesperson shared this with WPTavern on the issue: “The claim that Russians can&#8217;t contribute to GPL-licensed software is not entirely accurate. Executive Order 14071 was issued on April 6, 2022, and it prohibits new investments in the Russian Federation by U.S. citizens and restricts the exportation, reexportation, sale, or supply of certain services to individuals located in Russia.</p>\n\n\n\n<p>Additionally, it does not specifically address or ban the use of GPL-licensed (General Public License) software by Russian individuals or entities. The U.S. Department of the Treasury&#8217;s Office of Foreign Assets Control (OFAC) has provided guidance on the scope of services restricted under this order. While certain information technology and software services are prohibited, these restrictions do not extend to the mere use of GPL-licensed software by individuals in Russia.</p>\n\n\n\n<p><a href=\"http://wordpress.org/\">WordPress.org</a> is committed to increasing security expectations, adopting secure development practices, continuing to lead the project with transparency, and being a willing and helpful partner regarding any government requirements.”</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 Nov 2024 18:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:94:\"Do The Woo Community: Behind the Code, Brian Jackson on WordPress and WooCommerce Optimization\";s:7:\"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:28:\"https://dothewoo.io/?p=86880\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://dothewoo.io/behind-the-code-brian-jackson-on-wordpress-and-woocommerce-optimization/\";s: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:149:\"In this episode of Woo DevChat we chat with Brian about optimizing WooCommerce sites, the Perfmatters plugin, and the importance of customer 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Nov 2024 11: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:5:\"BobWP\";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:82:\"WPTavern: #145 – Calvin Alkan on Enhancing WordPress Productivity With CommandUI\";s:7:\"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=179273\";s:7:\"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:96:\"https://wptavern.com/podcast/145-calvin-alkan-on-enhancing-wordpress-productivity-with-commandui\";s: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:48356:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, enhancing WordPress productivity with a new WordPress plugin.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Calvin Alkan.</p>\n\n\n\n<p>Calvin has been in the WordPress space for the past four or five years, with a focus on security research. His company&#8217;s security product, called Fortress, has become a widely used tool for many hosting companies.</p>\n\n\n\n<p>Recently, Calvin and his team ventured into developing a new product CommandUI, and it&#8217;s this plugin which is the topic on the discussion today.</p>\n\n\n\n<p>Calvin shares his journey, starting from his experiences redesigning the Fortress website, and his frustrations with the traditional WordPress workflows. This led him to create CommandUI, aimed at providing a more efficient, keyboard driven workflow, akin to features available in his IDE, PhpStorm.</p>\n\n\n\n<p>Over the past two months, Calvin has been working on the plugin, and receiving positive feedback from the developer community, indicating a strong demand for such a tool.</p>\n\n\n\n<p>We talk about CommandUI&#8217;s functionalities, including its ability to help quickly navigate around the WordPress admin UI. It executes WordPress tasks using keyboard shortcuts, and Calvin explains how the tool helps manage your website efficiently, and how it supports dynamic integration with menus and can enhance accessibility.</p>\n\n\n\n<p>We also touch on the product&#8217;s reception into the market, and the serendipitous strategies that drove its vitality. Calvin talks about his efforts to ensure the tool resonates with power users, and the potential for future collaborations with plugin developers to expand its core offering.</p>\n\n\n\n<p>We explore why CommandUI, despite its success, may not be a fit for WordPress Core, but remains a novel solution for users looking to save time moving around the WordPress backend.</p>\n\n\n\n<p>If you&#8217;re curious about how a new tool changes the way you work with WordPress, and how a new product can become popular quickly, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Calvin Alkan.</p>\n\n\n\n<p>I am joined on the podcast by Calvin Alkan. How are you doing, Calvin?</p>\n\n\n\n<p>[00:03:34] <strong>Calvin Alkan:</strong> Hi Nathan, I&#8217;m doing fine. How are you?</p>\n\n\n\n<p>[00:03:35] <strong>Nathan Wrigley:</strong> Yeah, good, really good. This is unexpected. This episode probably would not have occurred just, I&#8217;m going to say, one month ago. Rewind the clock 30 days, and this episode probably would not have occurred. And you&#8217;ll find out why in a little while.</p>\n\n\n\n<p>But before we do that, Calvin has been on podcasts with me in the past talking about WordPress in terms of security. This is going to be very much focused on a brand new product, and the journey, and the happenstance, and serendipity of releasing that product into the wild over the last few weeks.</p>\n\n\n\n<p>But before we begin that Calvin, can I just give you a minute just to give us your bio, probably focusing on the WordPress space, maybe dropping some security bits and pieces in there as well. So just tell us who you are.</p>\n\n\n\n<p>[00:04:20] <strong>Calvin Alkan:</strong> Sure. I am probably in the WordPress space since four or five years ago, I don&#8217;t know exactly. But until very recently, or maybe like two months ago, I was mainly in the security space. I did a lot of security research. Our main product of my company, Snicco is Fortress, which is like a very advanced security tool that we mostly sell to WordPress hosting companies.</p>\n\n\n\n<p>That has mostly been my focus so far in WordPress, very focused on security. And we kind of stumbled into like a new product two months ago, which is CommandUI, which we&#8217;ll hopefully discuss in more depth right now.</p>\n\n\n\n<p>[00:04:53] <strong>Nathan Wrigley:</strong> Yeah, indeed we will. And it may be a good idea if you are listening to this podcast, to give yourself a bit of a flavor of what the product is. Head to commandui.com. Exactly as you might expect.</p>\n\n\n\n<p>Anything that we discuss today, if there&#8217;s a link for it, I will track it down and put it into the show notes. So you can find that on wptavern.com. Search for this episode, and all of the links will be in there. So that should be easy for you to get to.</p>\n\n\n\n<p>So this is a new product, brand new. It&#8217;s familiar, I would imagine, to most people, in the sense that they&#8217;ve probably used something like this before. That might be in their OS, or something. Do you want to just quickly tell us what it is, and then we&#8217;ll get into the fun story surrounding it.</p>\n\n\n\n<p>[00:05:35] <strong>Calvin Alkan:</strong> The really quick explanation is if you ever used something like Spotlight on Mac, or Raycast, even like commercial products for Mac. I think even Windows has something right now with this Windows search bar key, I don&#8217;t know, I&#8217;m not like a Windows power user.</p>\n\n\n\n<p>We&#8217;ve built the same thing, but specifically for WordPress. So it runs in your WordPress site, and basically allows you to build and manage your WordPress sites. The speed that was never possible before.</p>\n\n\n\n<p>[00:06:00] <strong>Nathan Wrigley:</strong> So when you say that, I&#8217;m imagining that a lot of people will be thinking, okay, there&#8217;s an interface, and I need to click around with a mouse. But maybe that&#8217;s what we should draw the distinction on straightaway. This is minimal mouse, I think you could describe as.</p>\n\n\n\n<p>[00:06:13] <strong>Calvin Alkan:</strong> Ideally you can unplug the mouse completely. That would be like the goal, because it&#8217;s just way faster. Like working with just the keyword is a lot faster than using the mouse.</p>\n\n\n\n<p>[00:06:22] <strong>Nathan Wrigley:</strong> So it invokes what you might describe as a modal front and center. So it&#8217;s a plugin, we should say that to begin with. It&#8217;s a plugin that you install in different WordPress websites. And then what do you do? How, do you invoke it? How do you interact with it? Let&#8217;s begin there.</p>\n\n\n\n<p>[00:06:37] <strong>Calvin Alkan:</strong> You have two options. You can either press the shift key twice, consecutively, with like a little, half a second time in between, or you can use the very classic command, or control K, combination that is used by other tools to invoke like similar models, or like command bars. So it&#8217;s one key combination. You can customise it if you want, but the default is, on Mac OS it&#8217;s command K, and on Windows it&#8217;s control K.</p>\n\n\n\n<p>[00:07:03] <strong>Nathan Wrigley:</strong> Okay. And if you do that, you then invoke, like I said, a modal, front and center in the middle. And it&#8217;s basically a text search box. And you can begin typing, and then the more input that you put in, it&#8217;s like faceted search in a way, it will then give you options for what you could do.</p>\n\n\n\n<p>So I don&#8217;t know, you might type in the letters p and o, which might map to, for example, post, things like that. And then it will give you the different options that it ships with at the moment. I imagine that functionality over time will increase.</p>\n\n\n\n<p>Let&#8217;s go into the kind of things that you can do with it. So would you be able to just outline a few typical things that you can do with it, that everybody will understand. Then maybe we could get into some of the more unusual edge cases. But let&#8217;s start with the really basics that it can do.</p>\n\n\n\n<p>[00:07:48] <strong>Calvin Alkan:</strong> Let&#8217;s start with the really basic of, you set up a new WordPress site, and you create like a post, and you view that post in the front end. And then you realise that you didn&#8217;t set up your pretty permalinks. So it&#8217;s still like p= whatever the number is, right, you know what I mean?</p>\n\n\n\n<p>So normally in WordPress, you would then need to go to like the little icon in the top left, and go to the admin dashboard. From there you need to find the, I don&#8217;t even know the exact name, but settings, I think permalinks, and then you need to change it. And all of that takes you like four clicks I think, more or less.</p>\n\n\n\n<p>And each of those clicks requires a full round trip to the server. So you need to wait to get a response back, and the server needs to render your WordPress page. So it probably takes you like, whatever, five seconds, let&#8217;s say, depending on your server speed.</p>\n\n\n\n<p>With CommandUI, you would just open it and type perm, for permalinks, and then it would instantly bring you up the result for settings permalinks, and then you hit enter, and you immediately jump to that page. So you just skip through all of the intermediary work to get to exactly what you want without taking all of these like unnecessary detours, if that makes sense. That would be like a very, very basic example.</p>\n\n\n\n<p>[00:08:52] <strong>Nathan Wrigley:</strong> Okay, so you have got all of the default settings in there. So if I install a vanilla version of WordPress, you&#8217;ve mapped, I&#8217;m going to say, every single setting that you could possibly get to.</p>\n\n\n\n<p>[00:09:03] <strong>Calvin Alkan:</strong> The default core ones, yeah.</p>\n\n\n\n<p>[00:09:04] <strong>Nathan Wrigley:</strong> Yeah. right, okay. And although it might seem trivial, you know, if you&#8217;re listening to this podcast and you&#8217;ve just got one WordPress website, you may be thinking to yourself, well, it&#8217;s not that difficult, is it? I can click four times and it&#8217;s not much of a burden.</p>\n\n\n\n<p>But honestly, when you&#8217;ve done that 15 times in a day. Map that over a week, and a year, this genuinely starts to add up. You only get a real understanding for it once you&#8217;ve done it. The sudden realisation that, okay, if I type three letters and hit return, that saves me from clicking this, waiting. Clicking this one now, and waiting. And then finally interacting. I know it seems like not a lot, but it is fairly profound.</p>\n\n\n\n<p>[00:09:39] <strong>Calvin Alkan:</strong> It looks nice on demos, but it&#8217;s amazing when you like kind of experience it the first time. It&#8217;s like something that looks great, but you need to really try. And most people, if you use it for like five minutes, then you can immediately see it, there&#8217;s no way that I&#8217;ll ever be able to go back to not using a tool like this.</p>\n\n\n\n<p>[00:09:55] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of interesting because my muscle memory at the moment, navigating around a WordPress website is very much bound to the mouse. If I&#8217;m in a post, for example, and I know that I want to go to that permalink setting, I actually know exactly where it is. So I know that I would do precisely what you said.</p>\n\n\n\n<p>But of course, for a bunch of people who are not really that familiar with WordPress, they may have seen a YouTube video and discovered, okay, I need to change the permalinks. Discovering where that is could be quite infuriating. So if you could just type in p e r, or whatever it might be, and you get there immediately, that kind of also helps the novice journey, if you like, inside of WordPress and managing all of that as well.</p>\n\n\n\n<p>[00:10:31] <strong>Calvin Alkan:</strong> And also, for example, one that might also resonate is if you have a site and you start to rack up the plugin numbers, like 20 plugins or, I don&#8217;t know. Let&#8217;s say 20 plugins, and each of those plugins adds like three menu items to the admin menu, and the icons look all familiar. It&#8217;s not uncommon to open it, and then you go like up and down looking for what it is that you&#8217;re trying to find. And it takes a lot of time.</p>\n\n\n\n<p>Basically the more plugins you add, the more valuable something like this becomes. Because, let&#8217;s say you want to find some WooCommerce subsetting. You don&#8217;t need to scan the sidebar for the exact WooCommerce icon that you need to just go into the command bar type Woo settings, or even shorter, Woo S, and then it&#8217;ll immediately find where you want to go to. Basically the nastier the site, the more valuable something like this becomes.</p>\n\n\n\n<p>[00:11:16] <strong>Nathan Wrigley:</strong> Oh, interesting. Okay, so that&#8217;s curious. So let&#8217;s say that I have 20 plugins installed, and each of them got menus, within menus, within menus. Dozens and dozens of options. How does your plugin know of their existence, and how is it, I don&#8217;t know, understanding that this plugin over here has this selection of settings. And obviously if that plugin gets an update and a new setting arrives, perhaps, how does it know all of that? Basically, what&#8217;s the underlying technology? How are you building this menu that must be in there in the background?</p>\n\n\n\n<p>[00:11:45] <strong>Calvin Alkan:</strong> So 99% of the product of CommandUI is like JavaScript that runs in your browser that has really nothing to do with WordPress, for it WordPress is just like a data source. And then you have like a tiny part that is like the PHP, the plugin part if you want. And that basically just informs the JavaScript of what kind of data is available.</p>\n\n\n\n<p>So when you load a page in WordPress, then the PHP part can see which admin menus are registered in like the WordPress menu bar, in the sidebar. It kind of reads those, and passes that information down to the JavaScript part, which then transforms that into the UI.</p>\n\n\n\n<p>So if you install a new plugin, it&#8217;ll immediately pull that in. You don&#8217;t need to need update anything, configure anything, it&#8217;s just all automatic.</p>\n\n\n\n<p>If you deactivate one, it will not show it anymore, or even if you use like, there&#8217;s like popular menu editor plugins and whatever. If you use one of those to rename a plugin, then it will show that with the renamed name, for example.</p>\n\n\n\n<p>So it&#8217;s all dynamic. It gathers all the data, basically, the plugin, and then passes the data down to the JavaScript libraries that we built, and that is responsible for presenting the data to you.</p>\n\n\n\n<p>[00:12:53] <strong>Nathan Wrigley:</strong> So it&#8217;s not like I install a new plugin, and then I need to go around examining the settings, and CommandUI has to learn it as I&#8217;m seeing it.</p>\n\n\n\n<p>[00:13:02] <strong>Calvin Alkan:</strong> It&#8217;s immediately available. And also in the front end. You can also do all of these actions from anywhere on your site. So on the front end, or even if you&#8217;re in a page builder, or inside Gutenberg, it always knows what you have available.</p>\n\n\n\n<p>[00:13:13] <strong>Nathan Wrigley:</strong> Okay, so let me just parse that so I&#8217;m sure that we&#8217;ve got it correct. So the first thing is, if I was to install CommandUI on an existing site, which has, let&#8217;s say, oh gosh, let&#8217;s go nuts, 50 plugins. The settings within those plugins would be available immediately. I wouldn&#8217;t have to wait for anything to be crawled.</p>\n\n\n\n<p>[00:13:30] <strong>Calvin Alkan:</strong> So navigation is really just one part of what it does. But everything you see in the sidebar, so like the top level menu items, the little sub settings, these are all immediately available. And then it also picks up on any, for example, custom post types that a plugin might create. So you can create post types from within it, you can search across post types. So it&#8217;s all dynamic. There isn&#8217;t even like a configuration page for CommandUI. And that&#8217;s like kind of how I want to be, like just install it, and then it just kind of works, right?</p>\n\n\n\n<p>[00:13:57] <strong>Nathan Wrigley:</strong> Yeah, I think we&#8217;ve grasped that. And we&#8217;ll get onto those other use cases in a moment. But also you mentioned page builders. But the example that you gave was in the WP admin area, so you want to change a setting, for example. Are you saying that this can be invoked wherever you may be in your WordPress website? So you could be editing a post, you could be in a page builder. Elementor, Beaver Builder, what have you. You can do the same command K, it will come right up no matter where you are.</p>\n\n\n\n<p>[00:14:22] <strong>Calvin Alkan:</strong> Correct. You could, for example, let&#8217;s say you are editing a page with Gutenberg, and then you realise that you missed your favorite block plugin that adds like custom blocks, or collections. You could install a plugin from the repository without ever leaving the Gutenberg editor. And then you would see these blocks available because you can also activate the plugin from within the post that you&#8217;re currently editing.</p>\n\n\n\n<p>And Gutenberg is dynamic. So I think Gutenberg fetches new blocks dynamically once they&#8217;re available, and then you could immediately use them without first leaving, going back, then going back into Gutenberg. So it&#8217;s like everywhere, and like I said, it saves a huge amount of time.</p>\n\n\n\n<p>[00:15:00] <strong>Nathan Wrigley:</strong> Fascinating. Okay, so we understand that it&#8217;s everywhere. We understand that it can get into settings, and you mentioned that you could modify the settings.</p>\n\n\n\n<p>Let&#8217;s talk about some of the other slightly less normal use cases. So as an example, if I wanted to, I don&#8217;t know, create a new post of a custom post type of my design. It would allow me to do that I&#8217;m guessing as well? There&#8217;s a keyboard shortcut for add, I don&#8217;t know, custom post, or add taxonomy, or whatever it may be.</p>\n\n\n\n<p>[00:15:26] <strong>Calvin Alkan:</strong> You can actually press the C key, the letter C, anywhere on your site, and then it will bring up a subsection of CommandUI where you can just choose the post type that you want to create. So let&#8217;s say if you type C, it opens up the model, and then you just type P for post, or P O to narrow it down if you have a lot. And then you hit enter, and then it immediately brings you to the page where you can create a new post type.</p>\n\n\n\n<p>And that not only works for the core post types, it also works dynamically for every single plugin that you install. So if you install ACF, for example, then you can press the C key, type ACF, and then you immediately get the option to create either ACF field group, or an ACF taxonomy, or you can even create ACF post type with it.</p>\n\n\n\n<p>You can&#8217;t do it inside the model because every post type, if it&#8217;s a custom plugin, might require different fields that we might not know about, but we immediately send you to the page where you can start creating the post type.</p>\n\n\n\n<p>[00:16:22] <strong>Nathan Wrigley:</strong> Is it possible to, with CommandUI, is it possible to open up things in a different tab or window? So as an example, I&#8217;m in the middle of a post, I&#8217;m in the flow, but I know that I need to modify some setting briefly, quickly over in a new thing. And typically I&#8217;d have to, I don&#8217;t know, right click, open new tab, navigate blah, blah, blah. So it can do all of that?</p>\n\n\n\n<p>[00:16:39] <strong>Calvin Alkan:</strong> By default, if you select an action with enter, then it opens it in the same window. If you select it with command, or control on Windows, and enter, then it opens the same action in a new tab. That is very useful. Like a lot of people have given me the feedback of like, this basically allows them to use their laptop without having 20 different chrome tabs open, because you don&#8217;t need to like save all those spots where you might want to go to later. You can just open it in a new tab, do your work, close the tab, and you&#8217;re back to where you were.</p>\n\n\n\n<p>[00:17:08] <strong>Nathan Wrigley:</strong> Yeah, I mean, that&#8217;s a very typical frustration for me, is that I will halfway through something, and I don&#8217;t want to close it in case I, I don&#8217;t know, just forget where I was or something. I want to be able to open immediately the setting.</p>\n\n\n\n<p>[00:17:20] <strong>Calvin Alkan:</strong> But why don&#8217;t you want to close it?</p>\n\n\n\n<p>[00:17:22] <strong>Nathan Wrigley:</strong> I don&#8217;t know.</p>\n\n\n\n<p>[00:17:23] <strong>Calvin Alkan:</strong> Probably because you know it would take you like a lot of time to get back to that page. That&#8217;s why you don&#8217;t want to close it.</p>\n\n\n\n<p>[00:17:28] <strong>Nathan Wrigley:</strong> It&#8217;s lots of little quality of life things basically it sort of sounds like.</p>\n\n\n\n<p>Okay, so we know it can do settings. We know it can interact with posts. We know that you can open things in new tabs so that you don&#8217;t have to navigate from what you&#8217;re doing.</p>\n\n\n\n<p>Does it do anything kind of quirky? I&#8217;m going to use the word quirky there. Does it do things that one might not expect? Have you built into it functionality that you thought, ooh, this is curious, maybe nobody will use this, but let&#8217;s see.</p>\n\n\n\n<p>[00:17:52] <strong>Calvin Alkan:</strong> Probably. You can do a lot of little things that don&#8217;t really matter in the grand scheme of things. For example, toggle the admin sidebar or, I don&#8217;t know, if you&#8217;re on the dashboard page, you can toggle, or collapse all of these widgets on the dashboard in WP admin. Or use it to log out of your site.</p>\n\n\n\n<p>So there&#8217;s a lot of these little things in there that, on its own, they wouldn&#8217;t blow you away, right? But it kind of all adds up. And if you can do, eventually, everything in there, I want to have as much in there as possible.</p>\n\n\n\n<p>And an important part that allows it to do this is because we built the entire search behind it from scratch. So we&#8217;ve tested this with like 100k items to be searched in the command bar. It doesn&#8217;t even break a sweat. It&#8217;s still in the sub 100 milliseconds for hundred thousands of items.</p>\n\n\n\n<p>So there&#8217;s really no limit to how many things and actions you can put in there. And it doesn&#8217;t overwhelm you either because you only get shown what kind of matches your search query. I want to have as much things possible in there.</p>\n\n\n\n<p>[00:18:47] <strong>Nathan Wrigley:</strong> So are you imagining a scenario where it can search, for example, the content of posts? So for example, I want to track down a post with the word Calvin in it.</p>\n\n\n\n<p>[00:18:56] <strong>Calvin Alkan:</strong> Right now it can already search all your users and every single post type. So posts, pages, every custom post type you create. For example, WooCommerce products, there&#8217;s a post type, so it can search those. But it only searches right now the titles. So you kind of need to at least roughly have an idea of where you want to go, that&#8217;s the search. That&#8217;s basically how it operates.</p>\n\n\n\n<p>You roughly need to have an idea what you&#8217;re looking for. Maybe a couple of letters, or an initial if you want to find the user Nathan, but you don&#8217;t know the last name maybe, or the email, you could just type N A and you&#8217;d probably find it. But it&#8217;s not really like the best UI for like exploratory searches. That&#8217;s not the best model with the search bar, and result is not the best use case for exploring what&#8217;s there if you don&#8217;t really know what you&#8217;re looking for yet.</p>\n\n\n\n<p>[00:19:38] <strong>Nathan Wrigley:</strong> Yeah. What I was describing is more the kind of search that you would have on the front end, isn&#8217;t it? Where you want to, I don&#8217;t know, search for a particular episode of a podcast, for example, with the word Calvin. And you would typically do that on the front end, and that&#8217;s an entirely different enterprise.</p>\n\n\n\n<p>As we&#8217;ve been talking, it suddenly occurred to me that, and I don&#8217;t know what your posture is on this, I don&#8217;t know how much work you&#8217;ve put into it, but it feels like you&#8217;ve thrown the doors open to perhaps a more accessible website because obviously we&#8217;re using the keyboard suddenly to navigate all the things. And I don&#8217;t know if the UI that you&#8217;ve built, you&#8217;ve had that in mind in the background, or coincidentally it happens to satisfy that. What&#8217;s gone on from the accessibility side to make this product usable?</p>\n\n\n\n<p>[00:20:18] <strong>Calvin Alkan:</strong> A lot of work into accessibility. I&#8217;ve worked with Gen Herres, I don&#8217;t know if you&#8217;re familiar with her. She does lot of work in the accessibility space in WordPress. The website I think is Easy Accessibility Guide. I&#8217;ve worked a lot with her because she told me like about the potential this has for users with assistive technology. And we&#8217;ve worked really, really hard to improve the admin experience for users with assistive technology.</p>\n\n\n\n<p>Building something like this, like that is so interactive in a way that doesn&#8217;t compromise power users, and users with assistive technology is really, really difficult. It&#8217;s not like a form where you go with the basics and then you&#8217;re good. Like this really, really needs a lot of custom work. But it turned out amazing. Every single item, every single search result is read out by the screen reader. Every single announcement, for example, if you install a plugin, then the screen reader will read out the progress information, like installing plugin, installed plugin.</p>\n\n\n\n<p>Everything is keyboard accessible. Everything has the proper aria labels. We did a lot of work there basically. Even things where if you close the model, it restores the focus back to where you&#8217;ve been to before on the page. I really think it has a lot of potential in the accessibility space to help people use WordPress.</p>\n\n\n\n<p>[00:21:26] <strong>Nathan Wrigley:</strong> Yeah, it just occurred to me that it was, in a sense, it was a really great interface for doing just that, because once you&#8217;re in the modal, you&#8217;re in the search bar, then you are basically using text. And if you can navigate through that with the tab key, or whatever it may be, with all the different assistive technologies out there, then that would be really useful. And it would circumvent that long journey of trying to find the menu, then finding the sub menu, then going through all the options, and toggling it on, or toggling it off.</p>\n\n\n\n<p>[00:21:50] <strong>Calvin Alkan:</strong> I think Gen did a video the other day about it, where she goes through the plugin with a screen reader and basically shows you how a user with a screen reader would experience that. So maybe you can link to it in a show notes later.</p>\n\n\n\n<p>[00:22:01] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s perfect. I will make sure that that goes into the show notes so that people can examine that.</p>\n\n\n\n<p>The other thing I was going to ask is, do you have intuitions that in the future you&#8217;ll be working with other developers? So for example, I don&#8217;t know, you mentioned popular plugins, a couple that you just mentioned. Is there any scope for them speaking to you to expose things that your plugin at the moment might not be able to get its teeth into, so that you can open up the functionality with CommandUI for the whole host of plugins that are out there in the wild?</p>\n\n\n\n<p>[00:22:31] <strong>Calvin Alkan:</strong> Definitely, one of the big projects will be having a proper extension system and developer APIs, so that either we can build first party extensions that we maintain, or that developers build their own extensions for it. For example, right now I like Bricks Builder a lot. And I use that. So we have a really good integration with Bricks Builder where, for example, if you are on the homepage, and then CommandUI recognises that you built this page with Bricks, then you can just press the B key, on the keyboard without even opening it, and it immediately brings you to edit that page in Bricks Builder.</p>\n\n\n\n<p>So that is something that obviously doesn&#8217;t work out of the box. So there&#8217;s like a little integration for handling Bricks specific things. You can also, if you search for a post, or let&#8217;s say a page, you wouldn&#8217;t edit posts with the page builder. But let&#8217;s say you have a landing page, or whatever, and then you search for it, and then instead of just a normal view page and edit page, it would also show you edit page in Bricks as an option, right? I think there&#8217;s a huge potential in having as many things as possible in there.</p>\n\n\n\n<p>One big thing is I want to also make it as easy as possible for also developers that maintain a site, but also plugin developers to integrate it without complicated setups, without needing to install like React and pre-compiling their JavaScript. I think it needs to be really, really simple for it to work. And that will definitely be one big project in the future.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> Fascinating what the future will hold. I mean that speaks to the next topic that I want to get into. Which is the fact that this is still really, really new. Really, this whole story has found its way into my consciousness because of, I guess maybe being on social networks. Up it popped a few weeks ago, maybe less, 10 days or something like that. And it feels like I had never heard of this until then, and then suddenly I couldn&#8217;t stop hearing about it. Let&#8217;s just get into that for a moment. First of all, why did you build this, and when did you start building it?</p>\n\n\n\n<p>[00:24:21] <strong>Calvin Alkan:</strong> So let me walk you through the timeline. I don&#8217;t remember the exact date, but I&#8217;d say like maybe two months ago I started working on the redesign of our website for Fortress, or other product, because that has still like a design from like two years ago that was never updated. You know how that goes, right?</p>\n\n\n\n<p>So I started working on it and we were using WordPress for it as well, and I really, really disliked the experience of working all day in WordPress. So my role is primarily a developer. I use WordPress, but I&#8217;m not like a WordPress power user in the sense that I spend all my day inside WordPress. I spend most of my time in my IDE and PhpStorm.</p>\n\n\n\n<p>And there I&#8217;m really, really spoiled by this keyboard driven workflow where you can do like thousands of things inside PhpStorm with just a couple keyboard combinations. And I really missed that in WordPress.</p>\n\n\n\n<p>So once I started building a site, I was getting really annoyed and I was like, I don&#8217;t know, I can quickly hack together something that works for me right now. And it took me like a couple hours to build something that allowed me to navigate between different pages. That was all I could do, navigate between the admin, homepage, and the settings. The really basic stuff. Nothing to really brag about.</p>\n\n\n\n<p>But then I recorded like a really crappy YouTube video, I think it&#8217;s still up somewhere, of just me showing that. And I posted it in groups where I frequently go to, in Facebook it was. People went absolutely crazy over it. The reaction was insane. People almost, how do you say, they bit my hand off to build this.</p>\n\n\n\n<p>The initial reaction definitely showed that there might be something there. Sometimes that just happens, right? And that also then the timing was the same, where all the WP drama started. And once that started, I basically knew that, okay, like my primary customer base is hosting companies, and there&#8217;s probably not a lot of enterprise sales going on in the next months in the hosting space. I immediately knew that. Understandable.</p>\n\n\n\n<p>But I knew that and then I was like, well, let me just try and build this thing properly, not the four hour versions, but like maybe the six week version. So the initial reaction was like very promising. And then I kept posting like videos about it, cool new things. And the reaction was always the same. People were messaging me in private, hey, I know this is not even like a finish, but can I please already pay you so that you can give me this, what you already have?</p>\n\n\n\n<p>It was like very promising all along the way, very good signals. And that&#8217;s why I ultimately ended up building it. So it took like maybe two months, right now seven weeks, two months, I don&#8217;t know, to get where we&#8217;re at right now. And it completely blew my mind, the feedback and the attention that it got. I never really expected that, to be honest. I don&#8217;t know, maybe this helps a couple of people, and it&#8217;s useful for me, and maybe it pays for a couple months of rent, that was kind like my expectation of it.</p>\n\n\n\n<p>[00:26:53] <strong>Nathan Wrigley:</strong> Well, I think most people who launch a product in the WordPress space, and if, dear listener, you are one of those people, I&#8217;m sure you can identify with the struggle. It&#8217;s not an easy place to be. There are countless different versions of more or less everything. So if you&#8217;re releasing a plugin, unless you come up with something truly different, then it&#8217;s likely that you are going to spend a lot of time bashing your head against the wall with the marketing, figuring out what the website&#8217;s going to look like.</p>\n\n\n\n<p>You have just had, I don&#8217;t want to call it luck, but if you forgive me for using that word, you&#8217;ve just had this perfect storm of building something, creating a video, putting it into some social networks, getting really amazing feedback which encouraged you to build it. And again, not really marketing in the traditional sense of the word, just social media, hanging out in groups and what have you, and explaining what you&#8217;re doing. And I think it&#8217;s fair to say that it&#8217;s been a barnstormer.</p>\n\n\n\n<p>Since you&#8217;ve started two months ago, we don&#8217;t need to get into the numbers, that&#8217;s not important, but is it fair to say that it has gone way beyond, in terms of the people that have interacted with you, and purchased it, and played with it, and given you feedback. I&#8217;m guessing it&#8217;s fair to say that it&#8217;s gone way beyond what you imagined.</p>\n\n\n\n<p>[00:28:00] <strong>Calvin Alkan:</strong> For sure. The way I launched it basically was, so once the product was ready, or maybe a week or two before it was fully ready, I threw up a landing page, and recorded like a proper demo walkthrough, my first ever edited video. It turned out okay. It turned out good with Descript, and a lot of these tools make it, I guess a videographer would cringe at that, but it&#8217;s like passable, it did its job.</p>\n\n\n\n<p>I threw up a wait list and had a little gamified approach to this waitlist thing, where I didn&#8217;t even like promise some crazy deal, or discount, or whatever. I just said, look, there will be a launch offer that will be better than the public offer, and it will be limited in quantity, not a gimmick or whatever, like when the quantity is sold out, it&#8217;s sold out.</p>\n\n\n\n<p>And then I think that the verbiage was something like, if you&#8217;re on the wait list, you&#8217;ll get 48 hours exclusive access before public launch to secure wait list deals. And if you&#8217;re in the first 50 spots, I think it was, then you get an additional 48 hours.</p>\n\n\n\n<p>I don&#8217;t know, it&#8217;s fun but I never expected it to go that crazy, like people were sharing it all over the place, and then once the first 50 people got access, a day before the entire wait list, they started using the product, loved it, posted about it.</p>\n\n\n\n<p>It was well done, I put a lot of thought into it, but it&#8217;s also, something about the timing must have been right with maybe like all the negativity that was happening in WordPress, Twitter and Facebook groups, and whatever. No, definitely there&#8217;s some part to it where people like were excited to see something positive, or some positive news coming out I think.</p>\n\n\n\n<p>[00:29:30] <strong>Nathan Wrigley:</strong> Yeah, I think also you happen to have a product which, if you frequent those Facebook groups, which I know you do, they&#8217;re full of people who are jobbing WordPressers. They&#8217;re either building websites, or they&#8217;re building plugins, or they&#8217;re building client websites as part of an agency or something like that.</p>\n\n\n\n<p>So they&#8217;re fully into WordPress, but they also realise the limitations. And in some cases they may have not have realised the frustration, but then when they saw something like this and thought, actually, you know what, that&#8217;ll save me a minute here, and a minute there, which all adds up to greater productivity.</p>\n\n\n\n<p>I think you just had that perfect storm of the right product, and you were already connecting to the perfect audience. And honestly, if we were to revisit this topic in a year and do some sort of marketing analysis, I think every domino was kind of set up perfectly. And again, I don&#8217;t mean this to sound bad, but kind of by accident in a sense. You&#8217;d already found your audience because you were in there talking to these communities. You built the product, which perfectly aligned, to scratch your own itch. What a lovely story, basically.</p>\n\n\n\n<p>[00:30:36] <strong>Calvin Alkan:</strong> I think maybe I stumbled upon the idea based on luck maybe, yeah, to some degree. I certainly didn&#8217;t expect that so many people will find it useful, or be interested in it. I do actually plan to, like once it all settles down a bit, do some sort of post mortem write up, or analysis of, this is how I launched it. This is why I did it this way, and why I didn&#8217;t do this, the decision making behind it. I also had a lot of trust, let&#8217;s say, not advisors, but like friends in the ecosystem that gave me a lot of feedback or, no, don&#8217;t do it this way, rather try this. And so I think like a proper writeup of that be cool to see, the behind the scenes.</p>\n\n\n\n<p>[00:31:10] <strong>Nathan Wrigley:</strong> Yeah, it would be interesting to match the people that you were already speaking to, prior to even conceiving the product, with the product that you then built, and the way that you were able to market it in a kind of gorilla fashion. Just producing some videos, and not, I don&#8217;t know, building an email list over many years and what have you.</p>\n\n\n\n<p>And I think it will be interesting because I think we all know that the WordPress space can be saturated. And just because you build it doesn&#8217;t mean that they will come. There&#8217;s so many serendipitous bits in there. It&#8217;s fabulous.</p>\n\n\n\n<p>One thing that I was going to ask you, and I don&#8217;t know if you have any intuitions about this, is that one of the comments that I kept seeing was something along the lines of, why isn&#8217;t this in Core WordPress? There were variants of that. You use it for a bit and you can&#8217;t not carry on using it. It&#8217;s got that stickiness to it. You get the muscle memory over a few short minutes and then suddenly it&#8217;s, oh, put the mouse away, I don&#8217;t want that anymore.</p>\n\n\n\n<p>And I did wonder if you have any thoughts about letting something like this go into Core, or working with Core on it, or whether or not you&#8217;re going to stay with the product that you&#8217;ve got. Not sure what you think about that.</p>\n\n\n\n<p>[00:32:11] <strong>Calvin Alkan:</strong> Well, it is kind of in Core, a lot of people don&#8217;t know that. In Gutenberg, in the block editor, and inside the site editor there is, I wouldn&#8217;t say similar, but they have a Command Palette, but it just, it never really stuck for people, getting into the habit of using it.</p>\n\n\n\n<p>Let&#8217;s say like this, a command bar is, I don&#8217;t know, maybe the best analogy is a keyboard. All keyboards, more or less, they look the same if you just glance at them from a distance. But once you start pressing like the first key, you really feel like the difference between like a $500 mechanical keyboard and a default keyboard, right? It&#8217;s hard to describe, but that&#8217;s like the best analogy I can give for it.</p>\n\n\n\n<p>And if a command bar is not like really, a really, really polished product, technically zero friction, people don&#8217;t get into the habit of using it. And I think that&#8217;s maybe why previous attempts of building something like this in WordPress didn&#8217;t really stick around, or didn&#8217;t take off. It&#8217;s just my theory.</p>\n\n\n\n<p>[00:33:00] <strong>Nathan Wrigley:</strong> Wasn&#8217;t it also limited just to the Gutenberg UI?</p>\n\n\n\n<p>[00:33:03] <strong>Calvin Alkan:</strong> That&#8217;s also a big part of it. If you can just use it inside the block editor, then it obviously won&#8217;t stick around. It&#8217;s like the default workflow for people. But also, of course, WordPress Core is just one tiny part of it, and there&#8217;s probably not resources to dedicate a full command bar team to it basically.</p>\n\n\n\n<p>In my opinion, maybe this shouldn&#8217;t be a Core thing to its fullest degree. There&#8217;s always the saying of 80 20 rule that they have, right? I don&#8217;t think 80% of WordPress users will use this. In the same way that not 80% of MacOS users use Spotlight or Raycast. There&#8217;s probably a big segment of users that will use it, but it&#8217;s nowhere near 80, probably not even near 50% of people that will use it. So I think the resources could be spent other ways. I don&#8217;t know, it&#8217;s just my theory.</p>\n\n\n\n<p>[00:33:43] <strong>Nathan Wrigley:</strong> That seems like a sensible way of doing it. I think the promise of WordPress is to be, if 80% of the people use it, then it can be considered. And I think you&#8217;re right. I think for people who are really in WordPress all the time, like you, like me, like the people that you&#8217;ve pitched the product to and who have bought it, then that makes perfect sense. But perhaps for the more casual user who&#8217;s just got a brochure site that they don&#8217;t really modify all that much, then maybe not.</p>\n\n\n\n<p>[00:34:05] <strong>Calvin Alkan:</strong> It&#8217;s also, I very much built this for the power user audience. And if you built with that in mind, the outcome is very different to if built like a, you can also build like a command bar that is more geared towards, let&#8217;s say beginners that need maybe more exploratory features. So if you open it, it&#8217;s more like, hey, you can do this, and from here you can go there. And ours is very much, you type a couple letters in some random order, and it more or less brings you to already where you know you want to go. So it&#8217;s I guess built for a different segment also.</p>\n\n\n\n<p>[00:34:36] <strong>Nathan Wrigley:</strong> Yeah, definitely worth checking out. So I think probably we&#8217;ve reached the number of minutes, which would be suitable for this episode. So we&#8217;ll knock it on the head there. But just before we go, one last mention of the URL, it&#8217;s commandui.com, no hyphens, just all as one word, commandui.com. Go and check it out.</p>\n\n\n\n<p>Where can we find you if we want to communicate about this? Obviously the website probably, but are there other places where you hang out? Sounds like you do hang out on socials quite a bit.</p>\n\n\n\n<p>[00:35:02] <strong>Calvin Alkan:</strong> Yeah, I&#8217;m in like all the popular WordPress Facebook Groups, mostly agency groups I think. And also since half a year, a year or so, very active on X, I think my handle is @CalvinAlkan. So if you want to hit me up, just hit me up there.</p>\n\n\n\n<p>[00:35:17] <strong>Nathan Wrigley:</strong> Okay, so that&#8217;s perfect. I will link to that in the show notes. Well, well done for, firstly, bringing a product to market in a record amount of time, but also for the barnstorming success that you&#8217;ve had. I hope that it carries on in that same way, and maybe, you never know, in a year or two, we&#8217;ll come back and see where you&#8217;re at. But Calvin Alkan, thank you so much for chatting to me today.</p>\n\n\n\n<p>[00:35:35] <strong>Calvin Alkan:</strong> Thank you Nathan, thanks for having me.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://x.com/CalvinAlkan\">Calvin Alkan</a>.</p>\n\n\n\n<p>Calvin has been in the WordPress space for the past four to five years, with a focus on security research. His company’s security product, called <a href=\"https://fortress.snicco.io/\">Fortress</a>, has become a widely used tool for many hosting companies. Recently, Calvin and his team ventured into developing a new product, <a href=\"https://commandui.com/\">CommandUI</a>, and it’s this plugin which is the topic under discussion today.</p>\n\n\n\n<p>Calvin shares his journey, starting from his experiences redesigning the Fortress website, and his frustrations with the traditional WordPress workflows. This led him to create CommandUI, aimed at providing a more efficient, keyboard-driven workflow, akin to features available in his IDE, PhpStorm. Over the past two months, Calvin has been working on the plugin and received positive feedback from the developer community, indicating a strong demand for such a tool.</p>\n\n\n\n<p>We talk about CommandUI&#8217;s functionalities, including its ability to help quickly navigate around the WordPress admin UI. It executes WordPress tasks using keyboard shortcuts, and Calvin explains how the tool helps manage your website efficiently, and how it supports dynamic integration with menus, and can enhance accessibility.</p>\n\n\n\n<p>We also touch on the product&#8217;s reception into the market, and the serendipitous strategies that drove its virality. Calvin talks about his efforts to ensure the tool resonates with power users, and the potential for future collaborations with plugin developers to expand its core offering.</p>\n\n\n\n<p>We explore why CommandUI, despite its success, may not be a fit for WordPress Core, but remains a novel solution for users looking to save time moving around the WordPress backend.</p>\n\n\n\n<p>If you’re curious about how a new tool changes the way that you work with WordPress, and how a new product can become popular quickly, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://snicco.io/\">Snicco</a></p>\n\n\n\n<p><a href=\"https://fortress.snicco.io/\">Fortress</a></p>\n\n\n\n<p><a href=\"https://commandui.com/\">CommandUI</a></p>\n\n\n\n<p><a href=\"https://www.raycast.com/\">Raycast</a></p>\n\n\n\n<p><a href=\"https://easya11yguide.com/\">EasyA11yGuide website</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=4eU59Hk4m70&feature=youtu.be\">A11Y battle: CommandUI vs WP Core vs Turbo Admin</a> &#8211; video with Gen Herres on YouTube</p>\n\n\n\n<p><a href=\"https://bricksbuilder.io/\">Bricks Builder</a></p>\n\n\n\n<p><a href=\"https://www.jetbrains.com/phpstorm/\">PhpStorm</a></p>\n\n\n\n<p><a href=\"https://www.descript.com\">Descript</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/\">WordPress Command Palette</a></p>\n\n\n\n<p><a href=\"https://x.com/CalvinAlkan\">Calvin on X / Twitter</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, 13 Nov 2024 15: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: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: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:76:\"Akismet: What is Email Obfuscation? Why is it Essential for Preventing 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:28:\"http://akismet.com/?p=284217\";s:7:\"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://akismet.com/blog/email-obfuscation/\";s: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:19556:\"<p>No one wants an inbox full of spam, especially when they’re running a business website. And when customer queries are overshadowed by spam and phishing attempts, you’re left inconvenienced — and that’s putting it mildly. Not to mention, sorting through it all takes a lot of time that could be spent on other&nbsp;tasks.</p>\n\n<p>While sharing your email address online is necessary to direct visitors towards your support and sales channels, it’s an open invitation for spambots, too. These automated programs crawl the web, collect public email addresses, and send a barrage of spam in the hopes that you or someone on your team takes the&nbsp;bait.</p>\n\n<p>Thankfully, this can be prevented with a tactic known as email obfuscation. This technique disguises your email addresses, keeping them safe from <a href=\"https://akismet.com/blog/what-is-a-spambot/\">spambots</a> and protecting your business from unwanted&nbsp;messages.</p>\n\n<p>So today, let’s explore email obfuscation in depth and explain how you can use it (alongside other methods) to improve your online&nbsp;security.</p>\n\n\n<span id=\"more-284217\"></span>\n\n\n<h2 id=\"what-is-email obfuscation\" class=\"wp-block-heading\">What is email&nbsp;obfuscation?</h2>\n\n<p>Email obfuscation is a technique used to mask email addresses so that they’re not as easily detected by spambots. When an email address is obfuscated, it’s still completely readable by humans, but is difficult for bots to&nbsp;recognize.</p>\n\n<p>Malicious bots are constantly crawling the internet looking for emails to scrape and add to their spam lists, and email obfuscation is absolutely necessary to prevent spam. While this won’t help against targeted spam and phishing attempts, it will at least stop the bulk of automated spam&nbsp;attacks.</p>\n\n<p>There are several ways to obfuscate an email on your site. Some methods include replacing parts of the email with HTML characters, or using JavaScript to dynamically display the email when the page is loaded. These make it a lot harder for simple bots to scrape your email. We’ll go into the details on how it works&nbsp;below.</p>\n\n\n<img width=\"1066\" height=\"1600\" src=\"https://akismet.com/wp-content/uploads/2024/10/image.jpeg\" alt=\"someone writing an email on their laptop, with a tablet and color swatches next to them\" class=\"wp-image-284219\" />\n\n\n<h2 id=\"why-is-email-obfuscation-crucial-for-cybersecurity-and-spam prevention\" class=\"wp-block-heading\">Why is email obfuscation crucial for cybersecurity and spam&nbsp;prevention?</h2>\n\n<p>Email obfuscation might not seem all that important. It’s hard to understand how disruptive spam can be until you have an inbox full of it. And by then, it’s too late to do anything about it except change your email address&nbsp;entirely.</p>\n\n<p>Here are some of the risks of leaving your email&nbsp;unobfuscated:</p>\n\n<h3 id=\"email-harvesting-bots-scraping-your email\" class=\"wp-block-heading\">Email harvesting bots scraping your&nbsp;email</h3>\n\n<p>You don’t want your email on a scammer’s list. These are sold to spammers looking for active emails to send their junk mail to. If your email is out there long enough, it’s nearly inevitable, but you can use email obfuscation to delay it as long as&nbsp;possible.</p>\n\n<h3 id=\"brute-force-attacks-on-your-email account\" class=\"wp-block-heading\">Brute force attacks on your email&nbsp;account</h3>\n\n<p>Once attackers know your email, they can attempt to launch brute force attacks to access your account. When this happens, they’ll try as many passwords as possible, and break in. It’s best to hide your email from the automated programs that run these brute force&nbsp;attacks.</p>\n\n<h3 class=\"wp-block-heading\">A spam&#8209;filled&nbsp;inbox</h3>\n\n<p>Spam may seem like just an annoyance, but it can be devastating when it’s in full force. Genuine customers get drowned out and your inbox becomes impossible to sort&nbsp;through.</p>\n\n<h3 id=\"being-targeted-by-phishing attacks\" class=\"wp-block-heading\">Being targeted by phishing&nbsp;attacks</h3>\n\n\n<p>Phishing occurs when an attacker tries to trick you into revealing sensitive info, like your email or website login info. Or, you might receive an email asking you to click a link or download an attachment that installs malware on your device and steals your info. Basic phishing attacks can be automated.&nbsp;</p>\n\n\n\n<p>While <em>you </em>may know all about how to identify a scam, not everyone on your team might be so experienced. The more team members that have access to your business email, the more likely they’ll fall prey to phishing attempts.&nbsp;</p>\n\n\n\n<p>And since over <a href=\"https://siliconangle.com/2023/10/02/report-half-phishing-emails-now-use-obfuscation-tactics-avoid-detection/\" target=\"_blank\" rel=\"noreferrer noopener\">55% of phishing emails</a> now employ some form of obfuscation to evade detection — which marks a significant 24.4% increase from the previous year — it’s more important than ever to implement some level of prevention.&nbsp;</p>\n\n\n<h2 id=\"common-methods-of-email obfuscation\" class=\"wp-block-heading\">Common methods of email&nbsp;obfuscation</h2>\n\n<p>There are several ways to hide the email address on your website from bots while still allowing real customers and prospects to contact you. And the good news is you can employ one or all of&nbsp;them.</p>\n\n\n<h3 id=\"use-a-contact-form-with-spam-protection \" class=\"wp-block-heading\">Use a contact form with spam protection&nbsp;</h3>\n\n\n<p>One of the most effective email obfuscation techniques is to avoid displaying your email online altogether. Instead, you can just use a contact form. Of course, contact forms have their own issues with spam, which is why you’ll need to use this alongside an anti&#8209;spam solution like&nbsp;<a href=\"https://akismet.com/\">Akismet</a>.</p>\n\n\n<img width=\"1000\" height=\"518\" src=\"https://akismet.com/wp-content/uploads/2024/10/image-1.jpeg\" alt=\"Akismet homepage with the text \" />\n\n\n\n<p>Akismet uses AI to scan all incoming form submissions and filter out unwanted, spammy messages with 99.99% effectiveness. <a href=\"https://akismet.com/blog/captcha-alternatives/\">No need for CAPTCHA</a> or other obtrusive spam protection methods. Spam will never even reach your inbox when you use Akismet. And if you have a WordPress website, it comes pre-installed, which is pretty convenient.&nbsp;</p>\n\n\n\n<h3 id=\"character-replacement\" class=\"wp-block-heading\">Character replacement</h3>\n\n\n\n<p>This can be as simple as replacing the “@” in an email with “at”, or replacing the symbols with their HTML entities. So an email address like “test@example.com” becomes “test@example.com”.&nbsp;</p>\n\n\n<p>This renders correctly for people who visit your website but parses as gibberish for bots. The downside is that it only works for very simple bots, so you should use it in conjunction with other&nbsp;methods.</p>\n\n\n<h3 id=\"image-based-obfuscation\" class=\"wp-block-heading\">Image-based obfuscation</h3>\n\n\n<p>Another simple solution is displaying your email as an image. Most bots can’t read images, so this can work pretty well. But it’s not user&#8209;friendly at all since visitors have to type in your email manually. There are also serious accessibility concerns for those who use screen readers. Because of these reasons, this isn’t the best option to&nbsp;pursue.</p>\n\n\n<h3 id=\"javascript-based-obfuscation\" class=\"wp-block-heading\">JavaScript-based obfuscation</h3>\n\n\n\n<p>This is a more involved method, where the email is hidden in the site’s code and rendered dynamically. The email address can be hidden within the site’s HTML code and is only displayed when the page is loaded by a browser. This makes it a lot more challenging for bots to scrape this data.&nbsp;</p>\n\n\n<p>There are more advanced bots out there, however, especially those running in a fully&#8209;fledged browser environment that can bypass these methods​. So that’s something to be aware&nbsp;of.</p>\n\n\n<h3 id=\"encoding-techniques\" class=\"wp-block-heading\">Encoding techniques</h3>\n\n\n\n<p>Encoding techniques involve converting an email address into a string of code that a browser can interpret, but that is difficult for bots to decode. A common method is <a href=\"https://developer.mozilla.org/en-US/docs/Glossary/Base64\" target=\"_blank\" rel=\"noreferrer noopener\">Base64 encoding</a>, where the email is transformed into a string of characters that can be decoded by the browser using JavaScript.&nbsp;</p>\n\n\n<p>So, if you have an email like &#8220;example@example.com&#8221; it might be encoded into a string like &#8220;ZXhhbXBsZUBleGFtcGxlLmNvbQ==&#8221;. When the page loads, a script decodes this string back into a readable email address that people can interact&nbsp;with.</p>\n\n<p>This method can be thwarted by more advanced bots though, so be mindful of that when putting a plan together to prevent&nbsp;spam.</p>\n\n<h2 id=\"how-email-obfuscation-fits-into-a-broader-cybersecurity framework\" class=\"wp-block-heading\">How email obfuscation fits into a broader cybersecurity&nbsp;framework</h2>\n\n<p>Where there’s a website, there’s a risk of people trying to break into it. You don’t need to be running a huge enterprise website to be targeted by bad actors. In all actuality, hackers and spammers are more than happy to take advantage of the lax security on smaller&nbsp;sites.</p>\n\n<p>That’s why cybersecurity should be a major concern of yours, whatever the size of your website. Digital threats, from spam to malware, are constantly evolving. And email obfuscation is just one piece of the puzzle that can put a stop to these&nbsp;threats.</p>\n\n<p>Email obfuscation serves as a preventative measure, reducing the likelihood that your email will be harvested and used for spam and phishing attacks. While spam is just a nuisance, phishing can lead to losing your account or major data breaches. So if you make your email harder to find, it lowers the chances of you being&nbsp;targeted.</p>\n\n<p>But email obfuscation isn’t enough on its own. It should complement other security measures. The anti&#8209;spam tools offered by Akismet can detect and block malicious messages that do manage to slip&nbsp;through.</p>\n\n<p>And you can further secure your online presence by setting up (and mandating) two&#8209;factor authentication for you and your team, <a href=\"https://jetpack.com/blog/weak-passwords/\" target=\"_blank\" rel=\"noreferrer noopener\">using strong passwords</a> (and not reusing them), and keeping website and server software up to date. Firewalls and intrusion detection systems can also work to keep your site&nbsp;safe.</p>\n\n<p>Besides that, providing cybersecurity training to your team (or thoroughly educating yourself if it’s just you) can help you recognize potential&nbsp;threats.</p>\n\n<p>So email obfuscation is a valuable tool, yes, but it works best when integrated into a comprehensive cybersecurity&nbsp;strategy.</p>\n\n<h2 id=\"the-importance-of-layered-security measures\" class=\"wp-block-heading\">The importance of layered security&nbsp;measures</h2>\n\n<p>There’s no one cybersecurity solution that will protect your entire online presence. So you’ll need to rely on multiple security measures that work together to create a more resilient&nbsp;defense.</p>\n\n<p>Redundancy is something you might have heard of in reference to web hosting servers. In a redundant hosting setup, if one server fails, a backup server is ready to take its place and prevent downtime. It’s used a lot when talking about website backups, too. If one backup fails, there’s another saved in a different location to ensure your data isn’t&nbsp;lost.</p>\n\n\n<p>This same concept of redundancy also applies to cybersecurity. If one layer of your defense fails, others are still in place to catch the threat.&nbsp;</p>\n\n\n<p>So if spambots figure out how to bypass your email obfuscation, having an <a href=\"https://akismet.com/wordpress/\">anti&#8209;spam solution</a> like Akismet will prevent that phishing email from reaching your inbox. And if it somehow does slip through that and your email spam filter, having two&#8209;factor authentication in place will prevent the phishing attempt from being successful even if you do hand over your login&nbsp;credentials.</p>\n\n\n<p>As cyberthreats are constantly becoming more sophisticated, this layered strategy is extremely important.&nbsp;</p>\n\n\n<h2 class=\"wp-block-heading\">How Akismet&#8217;s spam protection complements email&nbsp;obfuscation</h2>\n\n<p>While email obfuscation can be an effective strategy for keeping your email address hidden from spambots, it’s not&nbsp;foolproof.</p>\n\n<p>The issue with email obfuscation is that it’s static. Once you implement it, all attackers have to do is figure out how you’re hiding your email and update their bots to account for it. Then this method won’t work anymore. You can keep updating your methods, but it’s tedious to have to stay a step ahead of potential threats at all&nbsp;times.</p>\n\n<p>That’s why Akismet’s spam protection is such a preferred choice. Akismet is a spam protection platform that analyzes incoming messages for common spam patterns and then blocks spam&nbsp;immediately.</p>\n\n<p>And the big difference is that it’s dynamic, not static. Akismet is powered by machine learning that’s been trained on a dataset of billions of pieces of spam. As spammers use new methods to evade filters, Akismet learns in real&#8209;time, updating itself to respond to new&nbsp;threats.</p>\n\n<p>And that’s all done without any input needed from you, or your visitors. Unlike CAPTCHA, which can slow down and annoy your users, Akismet runs non&#8209;intrusively in the&nbsp;background.</p>\n\n<p>As we mentioned, a layered cybersecurity strategy is the best way to keep spam, phishing, and malware far away from your website. And while email obfuscation alone is not enough to protect yourself, combining it with Akismet makes for the best way to safeguard your email address&nbsp;online.</p>\n\n<h2 class=\"wp-block-heading\">Real&#8209;world examples where Akismet has effectively reduced&nbsp;spam</h2>\n\n<p>Akismet has proven to be a powerful tool in the fight against spam, helping countless businesses and individuals alike protect themselves. 100 million sites have used Akismet to block <strong>more than 500 billion pieces of&nbsp;spam</strong>.</p>\n\n<p>We’ve released a few case studies showcasing real&#8209;world examples where Akismet has made a significant&nbsp;impact.</p>\n\n<p>One is the <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit case study</a>, which explores how the marketing platform protected over 400,000 creators from spam. Lower billing fees and less email reputation damage meant happier ConvertKit customers, and the switch to Akismet was a major success. It just proves how well Akismet works for <a href=\"https://akismet.com/enterprise/\">enterprise&#8209;grade&nbsp;anti&#8209;spam</a>.</p>\n\n\n<p>Akismet also helped <a href=\"https://akismet.com/blog/saying-no-to-spam-on-smitten-kitchens-popular-food-site/\">Smitten Kitchen</a> block 2.3 million pieces of spam. Major websites like this can end up with thousands of comments per post and no easy way to filter them manually.&nbsp;</p>\n\n\n\n<img width=\"1500\" height=\"1066\" src=\"https://akismet.com/wp-content/uploads/2024/10/image-4.png\" alt=\"comment sections on the Smitten Kitchen website\" class=\"wp-image-284221\" />\n\n\n<p>Thankfully, Akismet saved Smitten Kitchen from a spam disaster by blocking spam from ever reaching their&nbsp;inbox.</p>\n\n<h2 id=\"frequently-asked questions\" class=\"wp-block-heading\">Frequently asked&nbsp;questions</h2>\n\n<p>This guide has covered what you need to know about email obfuscation and why it plays a key part in spam prevention. But in case you have any lingering questions, here are some answers to commonly asked questions about both email obfuscation and spam.&nbsp;</p>\n\n<h3 id=\"what-are-the-risks-associated-with-unprotected-email addresses\" class=\"wp-block-heading\">What are the risks associated with unprotected email&nbsp;addresses?</h3>\n\n<p>Failing to protect your email address leaves it vulnerable to spambots that crawl the web and capture them. Once your email is scraped, you can become a target for spam, phishing, and even brute force&nbsp;attacks.</p>\n\n<p>Besides filling your inbox with unwanted emails, you also risk losing your account if you fall for a phishing email or hackers manage to break&nbsp;in.</p>\n\n<h3 id=\"can-email-obfuscation-completely-prevent spam\" class=\"wp-block-heading\">Can email obfuscation completely prevent&nbsp;spam?</h3>\n\n<p>Email obfuscation can reduce the risk of your email address being collected, but it’s not 100% effective. Advanced bots can easily evade obfuscation tactics. That’s why it’s important to pair obfuscation with other security measures, like spam&nbsp;filters.</p>\n\n<h3 id=\"how-does-email-obfuscation-impact-the-user-experience-on-a website\" class=\"wp-block-heading\">How does email obfuscation impact the user experience on a&nbsp;website?</h3>\n\n<p>When done correctly, email obfuscation should have minimal impact on user experience. Users should still be able to see and copy your email address. But some methods, like using image&#8209;based obfuscation makes for a negative user experience that’s terrible for&nbsp;accessibility.</p>\n\n<h3 id=\"what-are-the-best-practices-for-implementing-email obfuscation\" class=\"wp-block-heading\">What are the best practices for implementing email&nbsp;obfuscation?</h3>\n\n<p>It’s best to avoid user&#8209;unfriendly obfuscation tactics like image&#8209;based email obfuscation, and instead use tactics like character replacement, JavaScript, or encoding. But the best way of all is to forgo posting your email and instead use a contact form with spam protection like what’s offered by&nbsp;Akismet.</p>\n\n<h3 id=\"how-can-i-also-protect-my-contact-forms-from spam\" class=\"wp-block-heading\">How can I also protect my contact forms from&nbsp;spam?</h3>\n\n<p>Akismet is a highly effective way to protect your contact forms from spam. Akismet automatically filters out spam submissions, ensuring that only legitimate messages reach your inbox. And since you’re using a contact form, your email is&nbsp;hidden.</p>\n\n<h3 id=\"how-accurate-is-akismet-at-stopping spam\" class=\"wp-block-heading\">How accurate is Akismet at stopping&nbsp;spam?</h3>\n\n<p>Akismet is incredibly accurate at identifying and filtering out spam. It’s actually 99.99% effective. It uses advanced algorithms and machine learning to detect a majority of spam. While no system is perfect, Akismet’s track record speaks for itself, with millions of spam messages blocked daily across millions of&nbsp;websites.</p>\n\n<h3 id=\"how-many-sites-use akismet\" class=\"wp-block-heading\">How many sites use&nbsp;Akismet?</h3>\n\n<p>Over 100 million sites worldwide use Akismet to protect their online presence from spam. Well&#8209;known brands like Microsoft, Bluehost, WordPress.com, and ConvertKit rely on Akismet to keep their platforms&nbsp;clean.</p>\n\n<h3 id=\"where-can-i-learn-more-about akismet\" class=\"wp-block-heading\">Where can I learn more about&nbsp;Akismet?</h3>\n\n<p>You can learn more about Akismet on our <a href=\"https://akismet.com/features/\">features page</a> and the rest of the website. This will explain everything you need to know about the platform. You can also check the <a href=\"https://akismet.com/pricing/\">pricing&nbsp;page</a>.</p>\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:\"Wed, 13 Nov 2024 14: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:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Do The Woo Community: Innovating with AI, a Journey from CTO to Entrepreneur with Aaron Edwards\";s:7:\"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:28:\"https://dothewoo.io/?p=86840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://dothewoo.io/innovating-with-ai-a-journey-from-cto-to-entrepreneur-with-aaron-edwards/\";s: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:189:\"Aaron Edwards shares his transition from WordPress CTO to founding DocsBot.ai, highlighting the importance of adapting to new technologies and iterative experimentation in entrepreneurship.\";s: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 Nov 2024 09:25: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:5:\"BobWP\";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:47:\"WordPress.org blog: WordPress 6.7 “Rollins”\";s:7:\"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=18066\";s:7:\"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://wordpress.org/news/2024/11/rollins/\";s: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:70564:\"<img width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/11/Release-Edition-Featured-Image.png?resize=1024%2C535&ssl=1\" alt=\"\" class=\"wp-image-18085\" />\n\n\n\n<p>Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.7, code-named &#8220;Rollins,&#8221; pays tribute to the legendary jazz saxophonist Sonny Rollins. Known as one of the greatest improvisers and pioneers in jazz, Rollins has influenced generations of musicians with his technical brilliance, innovative spirit, and fearless approach to musical expression.</p>\n\n\n\n<p>Sonny Rollins&#8217; work is characterized by its unmatched energy and emotional depth. His compositions, such as &#8220;St. Thomas,&#8221; &#8220;Oleo,&#8221; and &#8220;Airegin,&#8221; are timeless jazz standards, celebrated for their rhythmic complexity and melodic inventiveness. Rollins&#8217; bold and exploratory style resonates with WordPress&#8217; own commitment to empowering creators to push boundaries and explore new possibilities in digital expression.</p>\n\n\n\n<p>Embrace the spirit of innovation and spontaneity that defines Rollins&#8217; sound as you dive into the new features and enhancements of WordPress 6.7.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.7!</h2>\n\n\n\n<p>WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.7.zip\" target=\"_blank\" rel=\"noreferrer noopener\">Download WordPress 6.7 “Rollins”</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Twenty Twenty-Five</h2>\n\n\n\n<h4 class=\"wp-block-heading\">Endless possibility without complexity</h4>\n\n\n\n<p>Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.</p>\n\n\n\n<img src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-tt5-2.webp?ssl=1\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Get the big picture with Zoom Out</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Explore your content from a new perspective</h4>\n\n\n\n<p>Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.</p>\n\n\n\n<img src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-zoom-2.webp?ssl=1\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Connect blocks and custom fields with no hassle (or code)</h3>\n\n\n\n<h4 class=\"wp-block-heading\">A streamlined way to create dynamic content</h4>\n\n\n\n<p>This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn&#8217;t already.</p>\n\n\n\n<img src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-block-bindings-2.webp?ssl=1\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Embrace your inner font nerd</h3>\n\n\n\n<h4 class=\"wp-block-heading\">New style section, new possibilities</h4>\n\n\n\n<p>Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!</p>\n\n\n\n<img src=\"https://i0.wp.com/s.w.org/images/core/6.7/feature-font-presets-2.png?ssl=1\" alt=\"\" />\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p>WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p>65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p>For a comprehensive overview of all the new features and enhancements in WordPress 6.7, please visit the feature-showcase website.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/releases/6-7/\">Check out what&#8217;s new</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.7</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.7\">WordPress 6.7 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p>Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-7-field-guide/\">WordPress 6.7 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.7 release squad</h2>\n\n\n\n<p>Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.7 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordinator: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a></li>\n\n\n\n<li>Editor Tech Leads: <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>,&nbsp;<a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>,&nbsp;<a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>,&nbsp;<a href=\"https://wordpress.org/support/users/colorful-tones/\">Damon Cook</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>,&nbsp;<a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K. Gupta</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/adamsilverstein/\"></a><a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Default Theme Design Lead:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li>\n\n\n\n<li>Default Theme Development Leads:&nbsp;<a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>,&nbsp;<a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p>WordPress 6.7 reflects the tireless efforts and passion of more than 780 contributors in countries all over the world. This release also welcomed over 230 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/benniledl/\">!Benni</a> · <a href=\"https://profiles.wordpress.org/75thtrombone/\">75thtrombone</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/aware/\">Aaron Ware</a> · <a href=\"https://profiles.wordpress.org/aatanasov/\">aatanasov</a> · <a href=\"https://profiles.wordpress.org/abcsun/\">abcsun</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/fitehal/\">Abhishek Deshpande</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/acafourek/\">acafourek</a> · <a href=\"https://profiles.wordpress.org/adamkheckler/\">Adam Heckler</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adrian2k7/\">Adrian</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/ahmarzaidi/\">Ahmar Zaidi</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a> · <a href=\"https://profiles.wordpress.org/ahsankhan316/\">Ahsan Khan</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akashdhawade/\">Akash Dhawade</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> · <a href=\"https://profiles.wordpress.org/alanfuller/\">Alan Fuller</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alessandrotesoro/\">Alessandro Tesoro</a> · <a href=\"https://profiles.wordpress.org/ralessio/\">Alessio</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/digitalex11/\">Alexander Frank</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/harlet7/\">Alexandru Horeanu</a> · <a href=\"https://profiles.wordpress.org/ali7ali/\">Ali Ali</a> · <a href=\"https://profiles.wordpress.org/aliaghdam/\">aliaghdam</a> · <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amincharoliya/\">Amin Charoliya</a> · <a href=\"https://profiles.wordpress.org/amirthepiper/\">Amir Abbas</a> · <a href=\"https://profiles.wordpress.org/amitraj2203/\">Amit Raj</a> · <a href=\"https://profiles.wordpress.org/amjadr360/\">Amjad Ali</a> · <a href=\"https://profiles.wordpress.org/anthakkar08/\">Anand Thakkar</a> · <a href=\"https://profiles.wordpress.org/andergmartins/\">andergmartins</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a> · <a href=\"https://profiles.wordpress.org/andreiglingeanu/\">andreiglingeanu</a> · <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</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/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankit k gupta/\">Ankit K. Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/the-ank/\">Ankur Vishwakarma</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/perezcarreno/\">Armando J. Perez Carreno</a> · <a href=\"https://profiles.wordpress.org/armandsdz/\">Armands</a> · <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a> · <a href=\"https://profiles.wordpress.org/ambrosiawt/\">Art Smith</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/arypneta/\">arypneta</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/bjerke-johannessen/\">B&#229;rd Bjerke Johannessen</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart Kalisz</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/neoxx/\">Bernhard Riedl</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> · <a href=\"https://profiles.wordpress.org/berubenic/\">berubenic</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai13/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bijit027/\">bijit027</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blindmikey/\">blindmikey</a> · <a href=\"https://profiles.wordpress.org/bluantinoo/\">bluantinoo</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdannikolic/\">Bogdan Nikolic</a> · <a href=\"https://profiles.wordpress.org/veryard/\">Brad</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/brentjettgmailcom/\">Brent Jett</a> · <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bgosnell/\">Brian Gosnell</a> · <a href=\"https://profiles.wordpress.org/brianhenryie/\">Brian Henry</a> · <a href=\"https://profiles.wordpress.org/bridgetwes/\">bridgetwes</a> · <a href=\"https://profiles.wordpress.org/brobken/\">brobken</a> · <a href=\"https://profiles.wordpress.org/freibergergarcia/\">Bruno Freiberger Garcia</a> · <a href=\"https://profiles.wordpress.org/cambabutonono/\">Cambabutonono</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/carstenbach/\">Carsten Bach</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/charleslf/\">charleslf</a> · <a href=\"https://profiles.wordpress.org/mchirag2002/\">Chirag Mathur</a> · <a href=\"https://profiles.wordpress.org/chrico/\">ChriCo</a> · <a href=\"https://profiles.wordpress.org/jazzs3quence/\">Chris Reynolds</a> · <a href=\"https://profiles.wordpress.org/eclare/\">Chris Trynkiewicz (Sukces Strony)</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a> · <a href=\"https://profiles.wordpress.org/ckanitz/\">Christopher Kanitz</a> · <a href=\"https://profiles.wordpress.org/cpal/\">Christos Paloukas</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian</a> · <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/craynor/\">craynor</a> · <a href=\"https://profiles.wordpress.org/creativethemeshq/\">creativethemeshq</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/cweiske/\">cweiske</a> · <a href=\"https://profiles.wordpress.org/coquardcyr/\">Cyrille</a> · <a href=\"https://profiles.wordpress.org/da5f656f/\">da5f656f</a> · <a href=\"https://profiles.wordpress.org/xendo/\">Dademaru</a> · <a href=\"https://profiles.wordpress.org/daleharrison/\">daleharrison</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/colorful tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/daniguardiola/\">Dani Guardiola</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/itsdanny/\">Danny</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">Dareth NHANG</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/daveagp/\">daveagp</a> · <a href=\"https://profiles.wordpress.org/fac3less/\">David</a> · <a href=\"https://profiles.wordpress.org/dballari/\">David Ballarin Prunera</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/davidabowman/\">David Bowman</a> · <a href=\"https://profiles.wordpress.org/davidhbrown/\">David Brown</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/davidgodleman10up/\">David Godleman</a> · <a href=\"https://profiles.wordpress.org/dhenriet/\">David Henriet</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/ddewan/\">ddewan</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/deepakrohilla/\">Deepak Rohilla</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/dekadinious/\">Dekadinious</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dsmart/\">Derek Smart</a> · <a href=\"https://profiles.wordpress.org/deryck/\">Deryck</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a> · <a href=\"https://profiles.wordpress.org/devansh2002/\">Devansh Chaudhary</a> · <a href=\"https://profiles.wordpress.org/devspace/\">devspace</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhewercorus/\">dhewercorus</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dimplemodi/\">dimplemodi</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divibanks/\">Divi Banks</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a> · <a href=\"https://profiles.wordpress.org/cyberorca/\">Doni Kuntoro</a> · <a href=\"https://profiles.wordpress.org/dooperweb/\">dooperweb</a> · <a href=\"https://profiles.wordpress.org/dorzki/\">Dor Zuberi</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/eballeste/\">eballeste</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/edithlb/\">Edith Milagros Loayza Barazorda</a> · <a href=\"https://profiles.wordpress.org/ejnwebmaster/\">ejnwebmaster</a> · <a href=\"https://profiles.wordpress.org/elfu98/\">elfu98</a> · <a href=\"https://profiles.wordpress.org/eliorivero/\">Elio Rivero</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a> · <a href=\"https://profiles.wordpress.org/eatse/\">Emmanue ATS&#201;</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/emmanuel78/\">emmanuel78</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/ericdye/\">Eric Dye</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/erikiva/\">erikiva</a> · <a href=\"https://profiles.wordpress.org/erikyo/\">erikyo</a> · <a href=\"https://profiles.wordpress.org/eroan/\">Eroan Boyer</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> · <a href=\"https://profiles.wordpress.org/fahimmurshed/\">FahimMurshed</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fazyshah/\">Faizan Nabi</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/fayyazfayzi/\">Fayyaz</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fjorgemota/\">Fernando Jorge Mota (a11n)</a> · <a href=\"https://profiles.wordpress.org/finntown/\">finntown</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/fullworks/\">fullworks</a> · <a href=\"https://profiles.wordpress.org/gwallace87/\">Gale Wallace</a> · <a href=\"https://profiles.wordpress.org/gansbrest/\">gansbrest</a> · <a href=\"https://profiles.wordpress.org/garethelwell/\">Gareth Elwell</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/gauravtiwari/\">Gaurav Tiwari</a> · <a href=\"https://profiles.wordpress.org/gauravsingh7/\">gauravsingh7</a> · <a href=\"https://profiles.wordpress.org/georgwordpress/\">Georg</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/germanfrelo/\">Germ&#225;n Freixin&#243;s</a> · <a href=\"https://profiles.wordpress.org/glynnquelch/\">Glynn Quelch</a> · <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a> · <a href=\"https://profiles.wordpress.org/graemef/\">GraemeF</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/greentreefrog/\">greentreefrog</a> · <a href=\"https://profiles.wordpress.org/greenworld/\">GreenWorld</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/gyurmey/\">Gyurmey</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/halilesen/\">Halil ESEN</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hjklemenz/\">Hans J&#246;rg Klemenz</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardipparmar/\">Hardip Parmar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/plaidharper/\">Harper Holsinger</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshvaishnav/\">harshvaishnav</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hectorjarquin/\">hectorjarquin</a> · <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Iamarino</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hirschferkel/\">hirschferkel</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/h71/\">Hossein</a> · <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/kardi420/\">Ibrahim</a> · <a href=\"https://profiles.wordpress.org/ibrahimriaz/\">Ibrahim Riaz</a> · <a href=\"https://profiles.wordpress.org/imranh920/\">Imran Hossain (a11n)</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/itapress/\">itapress</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jpstevens/\">Jack Stevens</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/smithjw1/\">Jacob Smith</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jainil07/\">Jainil Shah</a> · <a href=\"https://profiles.wordpress.org/jtgreyd/\">Jakob Trost</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/jamesosborne/\">James Osborne</a> · <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a> · <a href=\"https://profiles.wordpress.org/jwgoedert/\">James Wesley Goedert</a> · <a href=\"https://profiles.wordpress.org/janpfeil/\">Jan Pfeil</a> · <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/jasonbahl/\">Jason Bahl</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javad2000/\">javad2000</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/jawadwp/\">Jawad Malik</a> · <a href=\"https://profiles.wordpress.org/topdownjimmy/\">Jay</a> · <a href=\"https://profiles.wordpress.org/jayadevankbh/\">Jayadevan k</a> · <a href=\"https://profiles.wordpress.org/drjosh07/\">jbrya029</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">JD Ahir</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jennifarhat/\">Jennifer Farhat</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/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/skobe/\">Jesko Bendmann</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jetaldobariya1/\">Jetal dobariya</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jimmyh61/\">jimmyh61</a> · <a href=\"https://profiles.wordpress.org/joemoto/\">Joe Cartonia</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</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/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</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/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/elbsegler/\">Jonas</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</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/jonnywatersbb/\">Jonny Waters</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josevarghese/\">Jose Varghese</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jossnaz/\">Jossnaz</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/julianoe/\">julianoe</a> · <a href=\"https://profiles.wordpress.org/juliemoynat/\">Julie Moynat</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/junedsabaliya/\">Juned Sabaliya</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/jzern/\">jzern</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">Kaavya Iyer (woo-hc)</a> · <a href=\"https://profiles.wordpress.org/arkenon/\">Kadim G&#252;ltekin</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/ikamal/\">Kamal Hosen</a> · <a href=\"https://profiles.wordpress.org/kamran8176/\">Kamran Hussen</a> · <a href=\"https://profiles.wordpress.org/karan4word/\">Karan Gupta</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/kartikmehta/\">Kartik Mehta</a> · <a href=\"https://profiles.wordpress.org/kartik-suthar/\">Kartik Suthar</a> · <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd (a11n)</a> · <a href=\"https://profiles.wordpress.org/keffr3n/\">Keffr3n</a> · <a href=\"https://profiles.wordpress.org/kel-dc/\">Kel Santiago-Pilarski</a> · <a href=\"https://profiles.wordpress.org/kellenmace/\">Kellen Mace</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/ktaron/\">Kevin Taron</a> · <a href=\"https://profiles.wordpress.org/kevinswalsh/\">kevinswalsh</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kimclow/\">Kim Clow</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kisquian/\">kisquian</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/kracked888/\">kracked888</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a> · <a href=\"https://profiles.wordpress.org/kristincodeswp/\">KristinCodesWP</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/gohelkunjan/\">Kunjan Gohel</a> · <a href=\"https://profiles.wordpress.org/kurtpayne/\">Kurt Payne</a> · <a href=\"https://profiles.wordpress.org/kushang78/\">Kushang Tailor</a> · <a href=\"https://profiles.wordpress.org/mlaetitia/\">Lae</a> · <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a> · <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> · <a href=\"https://profiles.wordpress.org/laranz/\">Lawrence Joe</a> · <a href=\"https://profiles.wordpress.org/leecollings/\">Lee Collings</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/lifelightweb/\">lifelightweb</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/louiswol94/\">Louis Wolmarans</a> · <a href=\"https://profiles.wordpress.org/louwie17/\">Lourens</a> · <a href=\"https://profiles.wordpress.org/lovesoni1999/\">Love Soni</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Lucas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madpeter/\">madpeter</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/mkrndmane/\">Makarand G. Mane</a> · <a href=\"https://profiles.wordpress.org/manbo/\">manbo</a> · <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> · <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani (a11n)</a> · <a href=\"https://profiles.wordpress.org/marianguas/\">Mar&#237;a Anguas</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/mardroid/\">Marcel Tannich</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> · <a href=\"https://profiles.wordpress.org/marcwieland95/\">marcwieland95</a> · <a href=\"https://profiles.wordpress.org/igreenie/\">Marek Železn&#253;</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/mariayohana/\">Maria Yohana</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</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/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/mat_/\">mat_</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattormeeple/\">Matt Sherman</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/lonelyvegan/\">Matthew Riley MacPherson</a> · <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a> · <a href=\"https://profiles.wordpress.org/mattraines/\">mattraines</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcrisp1972/\">mcrisp1972</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/mhshohel/\">Md Hossain Shohel</a> · <a href=\"https://profiles.wordpress.org/istiaqhossain/\">Md. Istiaq Hossain</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/meteorlxy/\">meteorlxy</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a> · <a href=\"https://profiles.wordpress.org/michaelbourne/\">Michael Bourne</a> · <a href=\"https://profiles.wordpress.org/hrkhal/\">Michael James Ilett</a> · <a href=\"https://profiles.wordpress.org/michaelpick/\">michaelpick</a> · <a href=\"https://profiles.wordpress.org/michaelwp85/\">michaelwp85</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mielbu/\">Michelle Bulloch</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ppolo99/\">Mike Poland</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikeb8s/\">mikeb8s</a> · <a href=\"https://profiles.wordpress.org/mikeybinns/\">Mikey Binns</a> · <a href=\"https://profiles.wordpress.org/milamj/\">milamj</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/369work/\">miroku</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mklusak/\">mklusak</a> · <a href=\"https://profiles.wordpress.org/mleathem/\">mleathem</a> · <a href=\"https://profiles.wordpress.org/mlf20/\">mlf20</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor</a> · <a href=\"https://profiles.wordpress.org/mosne/\">Mosne / Paolo Tesei</a> · <a href=\"https://profiles.wordpress.org/mossy2100/\">mossy2100</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir a11n</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/nagpai/\">Nagesh Pai</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">Nate Finch</a> · <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a> · <a href=\"https://profiles.wordpress.org/nhrrob/\">Nazmul Hasan Robin</a> · <a href=\"https://profiles.wordpress.org/nebojsajurcic/\">Neboj&#353;a Jurčić</a> · <a href=\"https://profiles.wordpress.org/nek285/\">nek285</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neo2k23/\">neo2k23</a> · <a href=\"https://profiles.wordpress.org/neotrope/\">neotrope</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nickbohle/\">Nick Bohle</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikitasolanki1812/\">Nikita Solanki</a> · <a href=\"https://profiles.wordpress.org/nirajgirixd/\">Niraj Giri</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">Nirav Sherasiya</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nurielmeni/\">nurielmeni</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/finalwebsites/\">Olaf Lederer</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/olivierlafleur/\">Olivier Lafleur</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/oscarhugopaz/\">Oscar Hugo Paz</a> · <a href=\"https://profiles.wordpress.org/prestonwordsworth/\">p15h</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/otakupahp/\">Pablo Hern&#225;ndez</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/pander/\">pander</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/obrienlabs/\">Pat O\'Brien</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</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/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/paulwilde/\">Paul Wilde</a> · <a href=\"https://profiles.wordpress.org/paulcline/\">paulcline</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/perryrylance/\">perryrylance</a> · <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/pevogam/\">pevogam</a> · <a href=\"https://profiles.wordpress.org/mr2p/\">Phi Phan</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/philwebs/\">philwebs</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/pgeorgiev/\">Plamen Georgiev</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pooja9712/\">pooja9712</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranitdugad/\">Pranit Dugad</a> · <a href=\"https://profiles.wordpress.org/pratikkry/\">Pratik Kumar</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/prionkor/\">prionkor</a> · <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/spanglishwebs/\">Rachel Winspear</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Gallani</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/rahmatgumilar/\">Rahmat Gumilar</a> · <a href=\"https://profiles.wordpress.org/rahulharpal/\">rahulharpal</a> · <a href=\"https://profiles.wordpress.org/imrraaj/\">Raj Patel</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/shashwatahalder01/\">Rajkumar Shashwata Halder</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ramswarup/\">Ramswarup Rathod</a> · <a href=\"https://profiles.wordpress.org/xyulex/\">Raul Martinez</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcneil/\">rcneil</a> · <a href=\"https://profiles.wordpress.org/realthemes/\">realthemes</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">reputeinfosystems</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rhellewellgmailcom/\">Rick Hellewell</a> · <a href=\"https://profiles.wordpress.org/riddhipatel/\">Riddhi Patel</a> · <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a> · <a href=\"https://profiles.wordpress.org/rishishah/\">Rishi Shah</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/rithik56/\">rithik56</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robert-biswas/\">Robert Biswas</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/rocketworks/\">rocket.works - Dominik Friedrich</a> · <a href=\"https://profiles.wordpress.org/rodelgc/\">Rodel Calasagsag a11n</a> · <a href=\"https://profiles.wordpress.org/rghedin/\">Rodrigo</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/geekofshire/\">Rohan Jha</a> · <a href=\"https://profiles.wordpress.org/rohitmathur7/\">rohitmathur7</a> · <a href=\"https://profiles.wordpress.org/room34/\">room34</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/roygbyte/\">roygbyte</a> · <a href=\"https://profiles.wordpress.org/royho/\">royho</a> · <a href=\"https://profiles.wordpress.org/rpf5573/\">rpf5573</a> · <a href=\"https://profiles.wordpress.org/rslee/\">rslee</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/rleeson/\">Ryan Leeson</a> · <a href=\"https://profiles.wordpress.org/ryancurban/\">Ryan Urban</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sppramodh/\">S P Pramodh</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sadmansh/\">sadmansh</a> · <a href=\"https://profiles.wordpress.org/isaeedam/\">Saeed Piri</a> · <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> · <a href=\"https://profiles.wordpress.org/sahiladit/\">sahiladit</a> · <a href=\"https://profiles.wordpress.org/sailpete/\">sailpete</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samtoohey93/\">Sam Toohey</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samuelsidler/\">Samuel Sidler</a> · <a href=\"https://profiles.wordpress.org/samuelsilvapt/\">Samuel Silva</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiya Venkatesan</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/sfougnier/\">Saul Fougnier</a> · <a href=\"https://profiles.wordpress.org/sauliusv/\">Saulius Vikerta</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scottculverhouse/\">scottculverhouse</a> · <a href=\"https://profiles.wordpress.org/seanavers/\">seanavers</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/kuuuzya/\">Sergey</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/zahardoc/\">Serhiy Zakharchenko</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/severinepozzo/\">Severine Pozzo</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/sharonaustin/\">Sharon Austin</a> · <a href=\"https://profiles.wordpress.org/sheulyshila/\">SheulyShila</a> · <a href=\"https://profiles.wordpress.org/spdft/\">Shoe</a> · <a href=\"https://profiles.wordpress.org/showravhasan/\">Showrav Hasan</a> · <a href=\"https://profiles.wordpress.org/shreya0204/\">Shreya Agarwal</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/silaskoehler/\">Silas K&#246;hler</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/simo_m/\">Simone Maranzana</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">SirLouen</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/sophiegy/\">Sophie - a11n</a> · <a href=\"https://profiles.wordpress.org/souptik/\">Souptik Datta</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stein2nd/\">stein2nd</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/thompsonsj/\">Steven Thompson</a> · <a href=\"https://profiles.wordpress.org/stimul/\">stimul</a> · <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a> · <a href=\"https://profiles.wordpress.org/styleshit/\">styleshit</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">Sunil Prajapati</a> · <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a> · <a href=\"https://profiles.wordpress.org/superchlorine/\">superchlorine</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/jannathsyeda/\">Syeda Fahima Jannath</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan Kumer Das</a> · <a href=\"https://profiles.wordpress.org/taylorgorman/\">Taylor Gorman</a> · <a href=\"https://profiles.wordpress.org/tdrayson/\">tdrayson</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</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/thrijith/\">Thrijith Thankachan</a> · <a href=\"https://profiles.wordpress.org/tigriweb/\">TigriWeb</a> · <a href=\"https://profiles.wordpress.org/timwhitlock/\">Tim W</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tirth03/\">Tirth Doshi</a> · <a href=\"https://profiles.wordpress.org/tmanoilov/\">tmanoilov</a> · <a href=\"https://profiles.wordpress.org/toastercookie/\">toastercookie</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/tomllobet/\">Tomas Llobet-Arany</a> · <a href=\"https://profiles.wordpress.org/tomhine/\">tomhine</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/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/tropicalista/\">tropicalista</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tunetheweb/\">tunetheweb</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/up1512001/\">up1512001</a> · <a href=\"https://profiles.wordpress.org/ukdrahul/\">Uttam Kumar Dash</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">valer1e</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/vertisoft/\">Vertisoft</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vijaysinh9094/\">Vijaysinh Zala</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/wbdv/\">wbdv</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webwurm/\">webwurm</a> · <a href=\"https://profiles.wordpress.org/wesrapyd/\">wesrapyd</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williamalexander/\">William Alexander</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wongjn/\">wongjn</a> · <a href=\"https://profiles.wordpress.org/wpeople/\">WPeople</a> · <a href=\"https://profiles.wordpress.org/wpnoman0/\">wpnoman0</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wzieba/\">wzieba</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani</a> · <a href=\"https://profiles.wordpress.org/collet/\">Yann</a> · <a href=\"https://profiles.wordpress.org/yguyon/\">Yannis Guyon</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yowangdu/\">YoWangdu</a> · <a href=\"https://profiles.wordpress.org/ytfeldrawkcab/\">ytfeLdrawkcaB</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yukinobu/\">Yukinobu Asakawa</a> · <a href=\"https://profiles.wordpress.org/yuvrajsinh2211/\">Yuvrajsinh Sisodiya</a> · <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a> · <a href=\"https://profiles.wordpress.org/zargarov/\">Zargarov</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">zeelthakkar</a> · <a href=\"https://profiles.wordpress.org/zitaruksergij/\">zitaruksergij</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<p>More than <a href=\"https://translate.wordpress.org/stats/\">40 locales have fully translated</a> WordPress 6.7 into their language making this one of the most translated releases ever on day one. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p>Participation in WordPress goes far beyond coding, and learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</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 Nov 2024 21:35:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:\"\";}}}}}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:110:\"WPTavern: Automattic Launches ‘WP Engine Tracker’ to Monitor Sites Leaving WP Engine, Sparking Controversy\";s:7:\"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=179470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/automattic-launches-wp-engine-tracker-to-monitor-sites-leaving-wp-engine-sparking-controversy\";s: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:5822:\"<p>The ongoing WordPress-WP Engine dispute has escalated with Automattic launching a new website &#8211; <a href=\"https://wordpressenginetracker.com/\">WP Engine Tracker</a>, to track the number of websites leaving WP Engine hosting.</p>\n\n\n\n<p>“An Automattic thingamajig,” this website tracks WP Engine hosting migrations from September 21, 2024, and also provides a downloadable CSV list of websites currently hosted on WP Engine, dubbed “sites ready for a new home.”</p>\n\n\n\n<p>Other details on this single-page website include links to <a href=\"https://wordpress.org/news/2024/10/wp-engine-promotions/\">promotions</a> offered by other hosting providers for migrating from WP Engine and the number of websites each hosting provider gained via migration. Pressable is the top gainer, followed by Bluehost and SiteGround.&nbsp;</p>\n\n\n\n<a href=\"https://x.com/WordPress/status/1854271844309684285\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXfs6RSLk07o0BhMxybcYgIiAjVM6pgF0UiehAbRc1-X_Jkihc5BXOEsKLZ67X4z333Qo-2-U1wRtte4T5vxPAJD_zGs1sf9PWkxJTbS0X_O4ijVutcF6sCpAu-9mlp_lqCbDpIoDw?key=LpNsXrCc-NEhL-PqP_-S_5CU\" alt=\"\" /></a>\n\n\n\n<p>Ironically, the site&#8217;s URL is wordpressenginetracker.com as the whole WordPress-WP Engine dispute started with Matt accusing the hosting company of misusing the WordPress trademark. Also Automattic had <a href=\"https://wptavern.com/automattic-and-matt-mullenweg-push-for-dismissal-of-key-claims-in-wp-engine-lawsuit\">opposed</a> WP Engine’s lawsuit claiming their <a href=\"https://automattic.com/wp-content/uploads/2024/10/opposition-to-preliminary-injunction.pdf\">allegations regarding lost customers</a> should be viewed with skepticism.&nbsp;</p>\n\n\n\n<p><a href=\"https://www.searchenginejournal.com/cloudflare-blocks-automattics-wp-engine-tracker-for-phishing/532244/\">Search Engine Journal</a> reported that the website was blocked by Cloudflare for &#8220;suspected phishing,&#8221; but it is now up. It <a href=\"https://www.searchenginejournal.com/wpengine-tracker-domain-protest-site/532253/\">also reported</a> about someone registering the domain name <a href=\"http://wpenginetracker.com\">WPEngineTracker.com</a>.</p>\n\n\n\n<a href=\"https://wpenginetracker.com/\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXeDl2uHqqXyd1eRG1-27QU1sfZQeMZpCSSwUqOCdqx6wap8FWPYcyiVjohWnPORVldwEU4ZHN5TcntIXJR18a3CocU8fLEx-nXwYk72jLrUZ7wpYxQBiQ5BagG61Mk01vIXVwE2sw?key=LpNsXrCc-NEhL-PqP_-S_5CU\" alt=\"\" /></a>\n\n\n\n<a href=\"https://github.com/wordpressenginetracker/wordpressenginetracker.github.io/issues/6#issuecomment-2463027472\"><img src=\"https://lh7-rt.googleusercontent.com/docsz/AD_4nXdDLhQruoamTpBlRZOaA1fc-9rl9f1Ban1pafy7hiQTUo4oxgX5RTaF2PTOZsDrIDJjEsGq1se6fqLqUjIjFYpTr_ll7RBPbIJO5S9rTUI2qbp5MhjCayOivn7CuAaVHkfOUYia_w?key=LpNsXrCc-NEhL-PqP_-S_5CU\" alt=\"\" /></a>\n\n\n\n<p><a href=\"https://x.com/WordPress/status/1854271844309684285\"></a>Eric Karkovack of The WP Minute <a href=\"https://x.com/karks88/status/1854610815330271588\">tweeted</a>, “Sort of like Ford tracking everyone who switched from Chevy. Doesn&#8217;t matter to me, I&#8217;m a Honda guy.” WordPress developer Brian Coords <a href=\"https://x.com/briancoords/status/1855286440537841792\">shared</a> this: “This has nice design/dev, but it&#8217;s sad to see talent and resources poured into increased negativity in the community, criticism without substance, tearing down instead of building up. Just sad that&#8217;s what WordPress is becoming a symbol for.”</p>\n\n\n\n<p>Security researcher Daniel Ruf dubbed it “amateurish”. He <a href=\"https://github.com/wordpressenginetracker/wordpressenginetracker.github.io/issues/3#issuecomment-2461388912\">continued</a>, “I&#8217;m not sure what the goal of this website is and what Matt tries to achieve. But the community is getting increasingly annoyed of such unprofessional behavior of Matt and in the security community some also think about dropping 0days for WordPress and related plugins/themes due to this whole situation. The feedback under the tweet from the official WordPress account and in the reddit community shows, what most of us think. The whole situation hurts everyone more than needed.”</p>\n\n\n\n<p>Another person <a href=\"https://news.ycombinator.com/item?id=42074721\">commented</a>, “So Automattic has put together a list for spammers and hackers to use to target a bunch of sites who are no longer doing business with Matt Mullenweg’s nemesis. That’s… shortsighted. This will surely result in legal action from one or more of these sites?”&nbsp;</p>\n\n\n\n<p>As of November 12, 18,280 websites have left WP Engine according to this website. </p>\n\n\n\n<p><strong>Update: </strong>An Automattic spokesperson shared this with us, &#8220;“The beauty of open source software is that everyone is able to access data on a granular level, because it’s all publicly available information. That public data has shown that ever since WP Engine filed its lawsuit – making it clear that they do not have an official association with WordPress and attracting greater attention to the company’s poor service, modifications to the WordPress core software, increasing and convoluted pricing structure, and repeated down times – their customers have left their platform for other hosting providers. WP Engine can and always has been able to access the WordPress software and plugins available on WordPress.org, as can anyone.”</p>\n\n\n\n<p>Automattic also <a href=\"https://x.com/automattic/status/1856034544115429655\">tweeted </a>this, &#8220;We got the domains list from several third-party sources, not from .org. It&#8217;s pretty easy for anyone to do with services like W3techs, Builtwith, etc, you could recreate the same with a few hours of work and a few hundred dollars. These are all public sites in DNS.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2024 19:25:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:71:\"WPTavern: Design Team Unveils New WordPress Design System Figma Library\";s:7:\"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=179442\";s:7:\"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:82:\"https://wptavern.com/design-team-unveils-new-wordpress-design-system-figma-library\";s: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:2643:\"<p>Automattician James Koster has <a href=\"https://make.wordpress.org/design/2024/11/07/announcing-the-new-wordpress-design-system-figma-library/\">announced the launch</a> of a new WordPress Design System library for Figma, the popular tool the design team uses to create mockups and prototypes for WordPress. “The intention of this resource is to streamline the design process for folks working in the WordPress ecosystem,” he explained. </p>\n\n\n\n<p>The design library offers a comprehensive range of components, including buttons, forms, icons, and menus, bringing everything you need into one place. It also includes style tokens that allow you to easily manage visual details like radius, elevation, color, and typography. For added convenience, the library provides handy stickers for individual components, and more extensive UI elements like the full-screen editor and site editor.</p>\n\n\n\n<p>James also revealed that the “intention is to publish a new version of the library in line with each Gutenberg release, and from 6.8 each major WordPress release too.”</p>\n\n\n\n<p>For WordPress Design Team members, the library will be automatically enabled in all new design files within the WordPress.org community Figma organization. Designers working in other Figma organizations can access it by duplicating the file from the community page and publishing it in their own organization.</p>\n\n\n\n<p>For those new to Figma, the WordPress Design Team recommends checking out Figma&#8217;s &#8220;Learn&#8221; platform, which offers a comprehensive &#8220;<a href=\"https://help.figma.com/hc/en-us/categories/360002051613-Get-started\">Get Started</a>&#8221; section to help users become familiar with the tool.</p>\n\n\n\n<p>You can leave your feedback in the <a href=\"https://www.figma.com/design/804HN2REV2iap2ytjRQ055/WordPress-Design-System?node-id=2799-26256&node-type=canvas\">source file</a> or on the <a href=\"https://github.com/WordPress/gutenberg\">Gutenberg repository on GitHub</a>.&nbsp;</p>\n\n\n\n<p>The community has responded positively to the new library. WordPress committer Tammie Lister <a href=\"https://x.com/karmatosed/status/1854789281933308098\">shared</a>, “It also is a step towards the true design system needed. Figma is a part of the system, but an important piece when updated regularly.” </p>\n\n\n\n<p>Courtney Robertson, Open Source Developer Advocate at GoDaddy, <a href=\"https://x.com/courtneyr_dev/status/1855676450394808746\">tweeted</a>, “#WordPress just stepped up its design game with a brand-new Figma Library as part of its Design System. Designers, it’s time to explore a more seamless workflow!”. </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 Nov 2024 16:38:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:93:\"Do The Woo Community: Strategies for Selecting Effective Marketing Channels with Afshana Diya\";s:7:\"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:28:\"https://dothewoo.io/?p=86803\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://dothewoo.io/strategies-for-selecting-effective-marketing-channels-with-afshana-diya/\";s: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:231:\"In this episode of Woo BizChat, Katie Keith and Afsaneh Diya discuss effective marketing strategies for WooCommerce and WordPress businesses, emphasizing audience understanding, community engagement, and diverse marketing channels.\";s: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 Nov 2024 09: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:5:\"BobWP\";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:22:\"Matt: RIP Quincy Jones\";s:7:\"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:23:\"https://ma.tt/?p=129636\";s:7:\"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:39:\"https://ma.tt/2024/11/rip-quincy-jones/\";s: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:3206:\"<p>Quincy Jones had such an impact on the culture that it&#8217;s impossible to summarize. <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones_production_discography\">His discography is amazing</a>. I feel so lucky to have met him in 2012 when I was much earlier in my career, and he didn&#8217;t have any reason to give me time, but he treated everyone as if they were important. We talked a lot about his Count Basie and Frank Sinatra days. If you&#8217;re unfamiliar with him, <a href=\"https://www.netflix.com/title/80102952\">the Quincy documentary on Netflix is a good start</a>. His musical fingerprints are everywhere, including the super-catchy theme songs for <a href=\"https://open.spotify.com/track/5zyrFDT1xa91xTShK6etQ8?si=aab3f9fd6b114881\">Sanford and Sons</a> and <a href=\"https://open.spotify.com/track/0Jw3cPBXlGnA6DEJrZSTI0?si=8b0773b2ef16409a\">Austin Powers</a>.</p>\n\n\n\n<img width=\"604\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2012/09/MCM_4579-1024x681.jpg?resize=604%2C402&ssl=1\" alt=\"\" class=\"wp-image-43056\" />\n\n\n\n<p>He passed away last week, on November 3<sup>rd</sup>. As a tribute, here are ten albums he was involved in from the jazz side that have been big parts of my life. I&#8217;ll link to Spotify, but find them wherever you can:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://open.spotify.com/album/2m0W0n7zBYmRNs1QAgoa6Z?si=w0HA3i5yReWoOAKgAFFwBg\">Sinatra at the Sands</a>, Quincy arranges and directs the Count Basie band. This live album is great to listen to, you also get Frank doing stand-up comedy. </li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/5lXF6AFeXG8UsIUfBJNsNH?si=UtcgbyAwSOOLQlml_UuJIQ\">It Might As Well Be Swing</a>, Frank Sinatra.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/18JHKcwCBtOfCGmOB7hXx8?si=XBdTKfEcSeeZs-jv02C_Yw\">Julian &#8220;Cannonball&#8221; Adderley</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/5DDLqs1JsR7ZfnuoqLL5dB?si=N0fAf0qYSw2Hm2V2A5j0rA\">Sonny Stitt Plays Arrangements from the Pen of Quincy Jones</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/752AJr22BFy9yubj4XJauv?si=jVCG1rGERQeQhQOuOfODUw\">Ella and Basie</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/4GFWnwli2cVOBp2G1zqhV1?si=Mhk0Jo8vQ0KYOugXPPSpVw\">The Genius of Ray Charles</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/79co4mGqrQdDK93j5ZuqH2?si=Q_ZupFpfSDKnXU8jN-jg9Q\">For Those in Love, Dinah Washington</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/3J6gCSiLOWrRjSY8xqpvkV?si=qrCG7mlpTxWFI3HFWcHC_g\">Dizzy and Strings, Dizzy Gillespie</a>.</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/5ioLlvIO3CZOmxvsQmGRZ4?si=yq6JeWoASEigUQHgmMNw8w\">Quincy Here We Come, Benny Bailey</a>. (The track Meet Benny Bailey has an <a href=\"https://open.spotify.com/album/7AurSRjfOYfUD9sWSi4MV1?si=cSvdBmZGQKG4qMWSO2kEzA\">excellent tribute on Manhattan Transfer&#8217;s Vocalese</a>.)</li>\n\n\n\n<li><a href=\"https://open.spotify.com/album/7MGttcftncXXItvutjK9dM?si=VKNQsJlOTvWh39sdqmXnOg\">Social Call, Betty Carter</a>.</li>\n</ol>\n\n\n\n<p>I put all ten into <a href=\"https://open.spotify.com/playlist/4BVr7ZF2X5p2RZ433VliiT?si=c8ce164132e74aac\">one Spotify playlist if you want to check them all out</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 Nov 2024 05:57:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"Gravatar: 7 Actionable Steps to List Your Social Media Handles Effectively\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2412\";s:7:\"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://blog.gravatar.com/2024/11/11/how-to-list-social-media-handles/\";s: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:21771:\"<p>Social media handles are your digital name tags – they help people find and connect with you across every platform. When chosen and used strategically, these identifiers do more than just label your accounts; they make your brand more recognizable and help grow your following.&nbsp;</p>\n\n\n\n<p>From major corporations to personal brands, the right social media handle can be the difference between getting lost in the crowd and standing out online. These handles are like a unique fingerprint across platforms, and their presentation on business cards, websites, product packaging, and marketing materials can leave a lasting impression.</p>\n\n\n\n<p>While it may sound like a simple thing, there is a strategy to it, and we’re here to show you exactly that. This guide walks you through seven actionable steps to list your social media handles effectively.&nbsp;</p>\n\n\n\n<p>From crafting consistent handles to harnessing modern tools like QR codes and integrating your profiles into video content, you&#8217;ll discover practical strategies to boost your brand&#8217;s following and make your social profiles easily accessible.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Choose consistent and memorable social media handles</strong></h2>\n\n\n\n<p>Being consistent with your social media handles builds recognition and allows your audience to find you across different platforms. Think of your handle as your digital signature – the more consistent it is, the more memorable you become.</p>\n\n\n\n<p>Inconsistent handles, on the other hand, could confuse your audience. Imagine a small business called &#8220;Green Leaf Gardens,&#8221; which has different handles on each platform:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Instagram: @greenleafgardens</li>\n\n\n\n<li>Twitter: @GLGardens2023</li>\n\n\n\n<li>Facebook: @greenleaflandscaping</li>\n\n\n\n<li>TikTok: @thegardeningexperts</li>\n\n\n\n<li>LinkedIn: @green-leaf-gardens-llc</li>\n</ul>\n\n\n\n<p>The mix of abbreviations, numbers, and different business names confuses potential customers and dilutes brand recognition. Using @greenleafgardens consistently (or a close variation if the exact handle isn&#8217;t available) would create a stronger, more memorable online presence.</p>\n\n\n\n<p>So, how can you prevent that?&nbsp;</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Pick a handle that&#8217;s up for grabs on all the platforms that matter to you. </strong>We&#8217;re talking Instagram, <a href=\"https://twitter.com/\">Twitter (now X)</a>, <a href=\"https://www.facebook.com/\">Facebook</a>, <a href=\"https://www.linkedin.com/\">LinkedIn</a>, <a href=\"https://www.tiktok.com/\">TikTok</a>, and any niche networks where your audience hangs out.</li>\n\n\n\n<li><strong>Keep it short and sweet.</strong> The simpler your handle, the easier it is to remember and type.</li>\n\n\n\n<li><strong>Make sure it reflects your brand. </strong>Your handle should give people a taste of who you are or what you do.</li>\n</ol>\n\n\n\n<p><strong><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f4a1.png\" alt=\"💡\" class=\"wp-smiley\" />Pro tip:</strong> <em>Start with the social platforms where your audience spends most of their time. But don&#8217;t stop there – grab your handle on emerging platforms, too, even if you&#8217;re not ready to use them yet – you might need them in the future.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Use Namechk and KnowEm to ensure handle availability</strong></h3>\n\n\n\n<p>Before you commit to a handle, take it for a test drive. Free tools like <a href=\"https://namechk.com/\">Namechk</a> or <a href=\"https://chromewebstore.google.com/detail/knowem-social-media-usern/mbkgomeeoffmnhnkmngelnbfbhoggmpm\">KnowEm</a> can show you if your dream handle is available across multiple social media platforms and domains.&nbsp;</p>\n\n\n\n<p>If your first-choice handle is taken, don&#8217;t panic. Get creative with variations that still keep your <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">brand identity</a> intact. Maybe add your location or an industry keyword. For example, @JohnDoeBakeryNYC tells people who you are, what you do, and where you&#8217;re based.</p>\n\n\n\n<p>And here&#8217;s a crucial step many folks overlook: <strong>check for potential trademark issues</strong>. The last thing you want is a legal headache down the road. A quick search of your local trademark office can save you a world of trouble.</p>\n\n\n\n<p><strong><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f4a1.png\" alt=\"💡\" class=\"wp-smiley\" />Pro tip:</strong> <em>If you&#8217;re unsure about potential trademark conflicts, it&#8217;s worth chatting with a legal pro specializing in intellectual property.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 2: Optimize handles for each platform&#8217;s format</strong></h2>\n\n\n\n<p>Each social media platform has its own handle requirements that you need to be aware of.&nbsp;</p>\n\n\n\n<p>For example, the <strong>character limitations are different</strong>. Twitter (now X) has a 15-character limit, while Instagram gives you a bit more breathing room with 30 characters. LinkedIn takes a different approach, using URLs like linkedin.com/in/username without the &#8220;@&#8221; symbol.&nbsp; Sometimes, you might need to tweak your handle slightly to fit a platform&#8217;s requirements. That&#8217;s okay, but try to keep it as close to your brand name as possible.&nbsp;</p>\n\n\n\n<p>Now, let&#8217;s talk symbols. On most platforms – Twitter, Instagram, TikTok – your handle starts with an &#8220;@&#8221; symbol. It&#8217;s like a universal &#8220;hey, this is a social media handle&#8221; sign. However, platforms like LinkedIn and Facebook often skip the &#8220;@&#8221; and use the full profile URL instead.</p>\n\n\n\n<p>Here&#8217;s a hot tip: <strong>avoid unnecessary symbols or numbers in your handle</strong> unless they&#8217;re essential to your brand identity. Sure, @JaneDoe_123_NYC might be available, but it&#8217;s a mouthful to say out loud and a pain to type. Keep it clean and simple.</p>\n\n\n\n<p>Different platforms have different purposes, and your handle should adapt accordingly. LinkedIn, for instance, is all about professional networking. So, your handle there might be more formal than your fun, casual Instagram handle.&nbsp;</p>\n\n\n\n<p>Finally, don&#8217;t forget to create a custom URL where possible. On LinkedIn or Facebook, you can often set up a custom URL (like linkedin.com/in/YourBrandName) that aligns closely with your handles on other platforms. It&#8217;s an easy way to keep your brand consistent across the board.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3: Display social media handles on marketing materials creatively</strong></h2>\n\n\n\n<p>Your marketing materials are a great opportunity to plug your social media handles and are often the first thing people look for in business cards, brochures, and product packages. Here&#8217;s how to make the most of it:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use clear, readable fonts: </strong>Choose fonts that are easy on the eyes, especially for smaller spaces like business cards, and make your handles stand out without overwhelming the design.</li>\n\n\n\n<li><strong>Incorporate social media icons: </strong>Place recognizable icons (Facebook, Instagram, Twitter, etc.) next to your handles and in your email signatures. They have to be high-resolution and align with your overall branding.</li>\n\n\n\n<li><strong>Showcase handles on product packaging:  </strong>If you sell physical products, use that space to encourage social engagement. For example, you can include your handles with a call-to-action like &#8220;Tag us on Instagram!&#8221;</li>\n\n\n\n<li><strong>Leverage event materials: </strong>Print your social handles on banners, posters, and promotional merchandise. You could also use items like T-shirts or tote bags to encourage attendees to follow you online.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4: Display your social handles in one place with Gravatar</strong></h2>\n\n\n\n<p>Promoting your social media handles across platforms can complicate things for your target audience, so the best course of action is to use a centralized page where they can find everything.&nbsp;</p>\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> is a free tool that lets you create a dynamic profile and include different types of information for your audience to see, including your verified social media profiles and other important links.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"333\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-profile-links-new-2.png?w=660\" alt=\"Gravatar verified accounts section\" class=\"wp-image-2415\" />\n\n\n\n<p>The most important feature of Gravatar is its automatic synchronization – update your profile in one place, and it will reflect across all connected platforms, which includes <a href=\"https://slack.com/\">Slack</a>, <a href=\"https://openai.com/\">OpenAI</a>, <a href=\"http://wordpress.com\">WordPress.com</a>, <a href=\"https://github.com/\">GitHub</a>, and more! </p>\n\n\n\n<p>On top of that, Gravatar allows you to verify your accounts, adding a layer of trust and authority. This is especially valuable for online personalities, entrepreneurs, CEOs, artists, and other professionals.&nbsp;</p>\n\n\n\n<p>In short, this is the perfect place for you to add all your social handles and easily share them across your website, email signatures, business cards, and marketing materials. You can do this by adding your <a href=\"https://blog.gravatar.com/2024/06/26/link-your-gravatar-profile-with-a-free-custom-domain/\">personal Gravatar .link URL</a> or generating a QR code directly from the platform.&nbsp;</p>\n\n\n\n<img width=\"660\" height=\"436\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-qr-code.png?w=660\" alt=\"Gravatar QR code\" class=\"wp-image-2416\" />\n\n\n\n<p>This can be extremely useful as it provides users with instant access to all your verified social profiles with one quick scan.</p>\n\n\n\n<p>Gravatar lets you create a cohesive, professional online presence that boosts your brand&#8217;s visibility and credibility. It ensures that your audience knows they&#8217;re connecting with the real you, no matter which platform they&#8217;re on.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 5: Leverage QR codes to simplify access</strong></h2>\n\n\n\n<p>Speaking of QR codes, here&#8217;s how to utilize them effectively.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use reliable, free QR code generators</strong> such as <a href=\"https://www.qr-code-generator.com/\">QR Code Generator</a>, <a href=\"https://scanova.io/\">Scanova</a>, or <a href=\"http://bit.ly\">Bit.ly</a> to create scannable links for individual platforms or a single page listing all your profiles (e.g., a Gravatar profile or <a href=\"https://blog.gravatar.com/2024/10/21/linktree-alternatives/\">Linktree page</a>). As noted above, if you have a Gravatar profile, you get a QR code for free and won’t have to use external tools. </li>\n\n\n\n<li><strong>Always test your QR codes</strong> before implementation to ensure they direct users to the correct destination.</li>\n</ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Include QR codes in physical assets</strong> like business cards, product packaging, in-store displays, printed advertisements, and flyers.</li>\n\n\n\n<li><strong>Develop platform-specific QR codes. </strong>If your target audience favors different social networks, create separate QR codes for each platform. Alternatively, use a single QR code to direct people to a central page listing all your social handles.</li>\n\n\n\n<li><strong>Opt for dynamic QR codes when possible. </strong>Unlike static codes, dynamic versions can be updated after printing, providing flexibility if you need to change the destination link. This feature lets you modify your digital information without reprinting materials if you update your social handles.</li>\n</ul>\n\n\n\n<p>Remember, QR codes are most effective when paired with clear instructions and a compelling reason to scan. Provide context for what users will gain by scanning – whether it&#8217;s access to exclusive content, special offers, or a comprehensive view of your social profiles.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 6: List social media handles on your website and landing pages</strong></h2>\n\n\n\n<p>Your website and landing pages are prime real estate for showcasing your social media handles. By strategically integrating these handles, you can create a true connection between your web presence and social profiles.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Include social media icons in key website locations</strong></h3>\n\n\n\n<p>Social media icons are a standard and effective method to display your handles on your website. These icons typically link directly to your social profiles, allowing visitors to follow you with a single click, which is why it’s good to place them in prominent areas like the header, footer, and contact sections of your website. This ensures visitors can easily access your handles regardless of which page they&#8217;re on.</p>\n\n\n\n<p>It’s also recommended that you use branded, recognizable icons to maintain a professional appearance and keep the user experience consistent. Still, make sure that they fit your website&#8217;s <a href=\"https://blog.gravatar.com/2024/06/05/user-profile-page-examples/\">design and color scheme</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Embedding live social media feeds</strong></h3>\n\n\n\n<p>Display live content from various platforms, such as Instagram posts, Twitter/X updates, or TikTok videos on strategic pages. For example, if you’re a food blogger, you could include an instagram feed with mouth-watering content that will entice people to follow you there.&nbsp;</p>\n\n\n\n<p>What’s important here is to make it as easy as possible for readers to find you, and the best way to do this is through CTA buttons. Place them at the end of blog posts, on product pages, or in pop-ups. Direct visitors to your social platforms with clear, actionable prompts.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Optimize social media links for mobile users</strong></h3>\n\n\n\n<p>With a significant portion of web traffic coming from mobile devices, remember to make your social media links mobile-friendly. Here’s how to do that:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Make links easily tappable: </strong>Icons and links have to be large enough for easy interaction on mobile screens. Avoid clustering links too closely together to prevent accidental taps.</li>\n\n\n\n<li><strong>Ensure responsive design: </strong>Verify that linked pages are optimized for mobile browsing and test the user experience across various devices and screen sizes.</li>\n\n\n\n<li><strong>Consider load times: </strong>Slow-loading social media elements can frustrate users and decrease engagement, so don’t forget to optimize icon images and linked content for quick loading on mobile networks.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 7: Promote social media handles in video and audio content</strong></h2>\n\n\n\n<p>Incorporating your social media handles into video and audio content can significantly boost your online presence. This approach allows you to reach audiences across multiple platforms and encourages cross-platform engagement.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Display social media handles as text overlays in videos</strong></h3>\n\n\n\n<p>Text overlays are an effective way to make your handles visible without disrupting the main content of your videos.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use lower-thirds for handle display</strong>\n<ul class=\"wp-block-list\">\n<li>Place your handles in the bottom section of the video, commonly known as lower-thirds.</li>\n\n\n\n<li>Ensure the text is clear and easy to read on both desktop and mobile devices.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Match branding with font choice</strong>\n<ul class=\"wp-block-list\">\n<li>Select fonts that align with your overall brand aesthetic.</li>\n\n\n\n<li>Keep the text professional and easily legible.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Balance visibility and subtlety</strong>\n<ul class=\"wp-block-list\">\n<li>Make sure your handles are noticeable without overwhelming the video&#8217;s visuals.</li>\n\n\n\n<li>Consider using semi-transparent overlays to minimize distraction.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Add social media handles to the description box of video platforms</strong></h3>\n\n\n\n<p>Video platforms like <a href=\"https://www.youtube.com/\">YouTube</a>, TikTok, and <a href=\"https://vimeo.com/\">Vimeo</a> offer valuable space in their description boxes for promoting your handles.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Prioritize handle placement</strong>\n<ul class=\"wp-block-list\">\n<li>List your most important handles at the top of the description.</li>\n\n\n\n<li>Use clickable links to make it easy for viewers to follow you immediately after watching.</li>\n</ul>\n</li>\n\n\n\n<li><strong>Tailor approach for different platforms</strong>\n<ul class=\"wp-block-list\">\n<li>On TikTok, where space is limited, focus on your primary handle in the caption or on-screen text.</li>\n\n\n\n<li>For YouTube, utilize the expanded description space to list multiple handles and provide context.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Mention handles verbally in video and audio content</strong></h3>\n\n\n\n<p>Verbal mentions of your social media handles can reinforce them and prompt your audience to follow you. However, you need to be strategic: Include handle mentions at the start, during transitions, or at the end of your content. For longer content like podcasts, naturally incorporate handle mentions during topic transitions.</p>\n\n\n\n<p>We also recommend briefly explaining what kind of content followers can expect on each platform and using a call-to-action approach, encouraging listeners to connect with you on social media.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Include social media handles in end screens or outro segments</strong></h3>\n\n\n\n<p>End screens and outros are prime locations for promoting your social media handles, as viewers often decide what to do next after finishing a video.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Create branded end screens</strong>\n<ul class=\"wp-block-list\">\n<li>Design clear, visually appealing end screens that prominently feature your handles.</li>\n\n\n\n<li>Include CTAs like, &#8220;Follow us on Instagram @YourHandle for behind-the-scenes content.&#8221;</li>\n</ul>\n</li>\n\n\n\n<li><strong>Utilize platform-specific features</strong>\n<ul class=\"wp-block-list\">\n<li>On YouTube, use the end screen feature to display clickable social media icons alongside your handles.</li>\n\n\n\n<li>Ensure these elements are easily clickable on both desktop and mobile devices.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Promote social handles during live streams</strong></h3>\n\n\n\n<p>Live streams offer real-time opportunities to promote your social media handles while interacting directly with your audience. Use a persistent on-screen graphic showing your primary social media handles and rotate different handles throughout the stream if you&#8217;re active on multiple platforms.</p>\n\n\n\n<p>You can also verbally encourage follows by periodically reminding viewers to follow you on other platforms and highlighting exclusive content or benefits available on specific social media channels.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Utilize social media handle watermarks in visual content</strong></h3>\n\n\n\n<p>Watermarks ensure your handle remains visible even if your video is shared across different platforms. Place the watermark in a corner of the video where it won&#8217;t distract from the content and ensure it&#8217;s noticeable enough for viewers to remember and easily read.</p>\n\n\n\n<p>Remember to be consistent! Use the same watermark design across all your video content for brand recognition. Consider using your primary social media handle as the watermark for maximum impact.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Take control of your online presence with Gravatar today</strong></h2>\n\n\n\n<p>Effectively listing and promoting your social media handles is crucial for building a strong online presence. Consistency and visibility are key, but so is efficiency. Managing multiple social media profiles can become time-consuming, especially when updating handles or ensuring consistency across platforms.</p>\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> offers a straightforward solution for organizing your online presence, making it easier for others to find and follow your profiles without having to manage multiple platforms. With Gravatar, you can:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a centralized profile listing links to all your social media accounts, website, portfolio, and other online presences.</li>\n\n\n\n<li>Link to your Gravatar profile in email signatures, websites, business cards, and even physical marketing materials using a QR code.</li>\n\n\n\n<li>Verify your social media accounts and links, adding a layer of trust and authority to your online presence.</li>\n</ul>\n\n\n\n<p>Whether you&#8217;re a small business owner, entrepreneur, or social media manager, Gravatar provides a streamlined solution to keep your social media handles up-to-date and visible across your digital footprint.</p>\n\n\n\n<p>Take the first step in simplifying your online presence management. <a href=\"https://gravatar.com/\">Create your Gravatar profile now</a> and start showcasing your social media handles across all platforms with ease.</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 Nov 2024 21:56: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:11:\"Ronnie Burt\";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:63:\"Do The Woo Community: How to Follow Do The Woo on the Fediverse\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86782\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/blog/how-to-follow-do-the-woo-on-the-fediverse/\";s: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:152:\"Do The Woo has joined the Fediverse, allowing users to engage with episodes and blog posts across decentralized platforms like Mastodon and Threads.net.\";s: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 Nov 2024 09:42: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:\"Matthias Pfefferle\";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:75:\"Gravatar: Gravatar’s Guide: Crafting an Outstanding Digital Business Card\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2388\";s:7:\"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://blog.gravatar.com/2024/11/08/creating-a-digital-business-card/\";s: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:9797:\"<p>Imagine that you&#8217;re at a networking event, eager to make connections, but you&#8217;ve run out of business cards. Or worse, you hand someone a card only to realize it has outdated information. Situations like these highlight why professionals are turning to digital business cards. These modern alternatives offer a dynamic way to share your contact details and personal brand, complete with rich media content and real-time updates.</p>\n\n\n\n<p>Digital business cards shine in both online (as a <a href=\"https://blog.gravatar.com/2024/08/28/level-up-your-profile-3-cool-new-features-for-your-link-in-bio/\">link in bio</a> tool, in the footer of contact pages and emails) and offline (in-person networking and <a href=\"https://blog.gravatar.com/2024/08/02/organizational-benefits-of-efficient-contact-sharing/\">contact sharing</a>) settings.<strong> </strong>So, whether you&#8217;re adding them to your email signature or sharing them at in-person events, they make networking and follow-ups much easier.&nbsp;</p>\n\n\n\n<p><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f331.png\" alt=\"🌱\" class=\"wp-smiley\" /> As a bonus, they&#8217;re environmentally friendly, reducing paper waste.</p>\n\n\n\n<p>However, creating an effective digital business card comes with challenges. Many solutions can be costly, and designing one without the necessary skills can be daunting. Thankfully, <a href=\"https://gravatar.com/\">Gravatar</a> exists – a completely free and powerful platform for crafting digital business cards.</p>\n\n\n\n<p>This guide will show you how to use Gravatar to create a professional, eye-catching digital business card – no design expertise required!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Necessary features and design elements for your digital business card</strong></h2>\n\n\n\n<p>While it’s good to be creative and unique with your digital business card, you still need some essential elements. Let’s see what they are:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Profile photo:</strong> It&#8217;s often the first thing people notice, so choose a clear, well-lit, high-quality headshot that reflects your professional persona.</li>\n\n\n\n<li><strong>Contact information:</strong> Include the essentials such as name, job title, company, email, and phone number. Remember, digital cards allow for easy updating if any details change.</li>\n\n\n\n<li><strong>Social media links: </strong>Add links to your relevant social profiles. This expands your networking reach, allowing connections to engage with you on multiple platforms.</li>\n\n\n\n<li><strong>Personal website or portfolio link:</strong> Showcase your work and drive traffic to your site by including a link to your personal website or portfolio.</li>\n\n\n\n<li><strong>Brief bio or tagline: </strong>Craft a concise personal statement that encapsulates your professional identity or unique selling point. Keep it short, sharp, and memorable.</li>\n\n\n\n<li><strong>Customization options:</strong> Your digital card should align with your personal brand, especially the visuals, such as the color scheme, fonts, and overall design. For example, you could use the same font as you would on your website but also include an effective one-liner like you would on LinkedIn.&nbsp;</li>\n\n\n\n<li><strong>Sharing methods: </strong>Ensure your digital card is easily shareable both online and offline. For example, you can create your own QR code that people can scan and access your card in seconds. Online, the most effective way is to have a <a href=\"https://blog.gravatar.com/2024/06/26/link-your-gravatar-profile-with-a-free-custom-domain/\">nice, short, custom URL</a>.&nbsp;</li>\n\n\n\n<li><strong>Easy follow-ups and contact: </strong>Your business card needs to make it easy for people to follow up and contact you when they want to. That means including your email signature in your business card, or links to contact forms.&nbsp;</li>\n\n\n\n<li><strong>Privacy controls: </strong>Make sure you can control what information is visible and to whom. This flexibility allows you to tailor your card for different professional contexts.</li>\n\n\n\n<li><strong>Integration capabilities: </strong>Consider how your digital card might connect with other tools you use regularly, such as CRM systems or other professional platforms.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Create a stunning digital business card with Gravatar – no design skills needed</strong></h2>\n\n\n\n<img width=\"2492\" height=\"1298\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-new-homepage.png\" alt=\"Gravatar homepage\" class=\"wp-image-2391\" />\n\n\n\n<p>Enter Gravatar: your free ticket to a globally recognized digital identity. This platform is a powerful tool for managing your online presence across thousands of websites and services. Think of it as your universal digital business card and <a href=\"https://blog.gravatar.com/2024/04/10/personal-branding-tools/\">personal branding hub</a> all rolled into one.</p>\n\n\n\n<img width=\"1032\" height=\"776\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/ronnie-gravatar-profile.png\" alt=\"Ronnie Burt’s Gravatar profile\" class=\"wp-image-2392\" />\n\n\n\n<p>What sets Gravatar apart? Its simplicity. You don&#8217;t need to be a design guru to create a standout profile. Just upload an avatar and fill in your details, and you&#8217;re good to go. But don&#8217;t let the ease of use fool you – there&#8217;s plenty of room for customization. You can play with background colors, tweak button hues, or add a custom-branded header and footer.&nbsp;</p>\n\n\n\n<img width=\"1613\" height=\"919\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-profile-edit-page.png\" alt=\"Demo profile in Gravatar\" class=\"wp-image-2393\" />\n\n\n\n<p>You can even rearrange the layout to suit your style. And for those who want to go the extra mile, why not embed a video introduction? It&#8217;s all about making your digital card uniquely you.</p>\n\n\n\n<p>Here&#8217;s what you can pack into your Gravatar profile:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your chosen avatar image (make it a good one!)</li>\n\n\n\n<li>Name and a snappy biography</li>\n\n\n\n<li>Contact information (email, website)</li>\n\n\n\n<li>Links to your social media profiles</li>\n\n\n\n<li>Other relevant links (portfolio, projects, etc.)</li>\n</ul>\n\n\n\n<p>But here&#8217;s where Gravatar really shines: <a href=\"https://blog.gravatar.com/2024/02/27/gravatar-manifesto-one-profile-everywhere/\"><strong>automatic synchronization</strong></a>. Update your profile once, and those changes instantly appear across all connected platforms&nbsp; – no more scrambling to update multiple online profiles when you change jobs or contact details. This ensures your personal brand stays consistent everywhere you appear online, from professional forums to project collaborations.&nbsp;</p>\n\n\n\n<p>And for those <a href=\"https://blog.gravatar.com/2024/06/16/how-to-network-at-a-conference/\">in-person networking moments</a>, you can generate a QR code for your Gravatar profile and watch as people scan their way straight to your digital doorstep.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Android and Apple Wallet Support, Too</h2>\n\n\n\n<img width=\"2800\" height=\"1720\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/image.png\" alt=\"\" class=\"wp-image-2427\" />\n\n\n\n<p>Never fumble for a business card again. Your Gravatar profile now lives in your phone&#8217;s wallet!</p>\n\n\n\n<p><strong>Quick Setup:</strong></p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log into your Gravatar profile</li>\n\n\n\n<li>Click the &#8216;Share profile&#8217; button</li>\n\n\n\n<li>Select &#8216;Add to Apple Wallet&#8217; or &#8216;Add to Google Wallet&#8217;</li>\n\n\n\n<li>Tap to add &#8211; you&#8217;re done!</li>\n</ol>\n\n\n\n<p><strong>Why You&#8217;ll Love It:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Always on hand &#8211; even when your phone is offline</li>\n\n\n\n<li>Share your profile with a quick tap</li>\n\n\n\n<li>Updates automatically when you change your Gravatar</li>\n\n\n\n<li>Looks sleek in your digital wallet</li>\n\n\n\n<li>Perfect for conferences and meetups</li>\n\n\n\n<li>More eco-friendly than paper cards</li>\n</ul>\n\n\n\n<p><img src=\"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f31f.png\" alt=\"🌟\" class=\"wp-smiley\" /> <strong>Here&#8217;s a neat trick</strong>: Gravatar integrates with comment systems on many blogs and news sites. This means your digital business card can pop up alongside your online contributions, turning everyday interactions into potential networking gold.</p>\n\n\n\n<img width=\"1744\" height=\"952\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/11/gravatar-comment-section.png\" alt=\"Responses to comments in Gravatar\" class=\"wp-image-2394\" />\n\n\n\n<p>So, ready to create a digital business card that works as hard as you do? Let&#8217;s dive into how you can make Gravatar work its magic for your professional brand.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Future-proof your networking: Create a digital business card with Gravatar</strong></h2>\n\n\n\n<p>Gravatar isn&#8217;t just another digital business card platform – it&#8217;s a revolution in online networking. Its unique email-based system allows you to manage multiple online identities effortlessly. And with thousands of integrated platforms, your Gravatar profile becomes a centralized hub for your digital presence.</p>\n\n\n\n<p>Worried about design skills or costs? Gravatar eliminates these common hurdles. It&#8217;s free, user-friendly, and doesn&#8217;t require a degree in graphic design to look professional.</p>\n\n\n\n<p>Head to <a href=\"http://gravatar.com\">Gravatar.com</a> and create your free profile using your email address. It&#8217;s time to build a digital business card that works as hard as you do!</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 Nov 2024 22:13:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";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:89:\"Do The Woo Community: Friday Shares: This Week’s Must-Reads and Community Highlights v3\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86767\";s:7:\"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:89:\"https://dothewoo.io/blog/friday-shares-this-weeks-must-reads-and-community-highlights-v3/\";s: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:168:\"This week’s highlights include WordPress 6.7 updates, community events, sponsorship calls, new resources, and insights into web development and e-commerce strategies.\";s: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 Nov 2024 10:42: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:5:\"BobWP\";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:52:\"WPTavern: WooCommerce Set to Launch New Logo in 2025\";s:7:\"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=179174\";s:7:\"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:63:\"https://wptavern.com/woocommerce-set-to-launch-new-logo-in-2025\";s: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:2561:\"<p>WooCommerce is all set to roll out a <a href=\"https://x.com/WooCommerce/status/1851315035047379219\">new logo</a> in early 2025. Tamara Niesen, Chief Marketing Officer at Woo told WP Tavern, “We saw an opportunity to evolve the brand so it aligns with our new product vision and gives us a solid foundation for continuing to grow our business. The new direction helps us stand out. It’s bold, fresh, and communicates what we do and who we’re for.”</p>\n\n\n\n\n\n\n\n<p>The updated logo, featuring a lively purple and white color palette, has already sparked a buzz in the WordPress community. It showcases “WOO” in white against a deep purple background, sometimes transitioning into a shopping cart, with the “O”s doubling as wheels—perfectly representing a platform that powers millions of online stores worldwide.</p>\n\n\n\n<p>Jay Walsh, Director of Communications at WooCommerce.com, shared that they recently discussed plans around the Woo and WooCommerce brand and identity during the keynote session of this year’s WooSesh. The team teased a refreshed WooCommerce logo treatment during the keynote, which is part of the wider effort to make the Woo brand, voice, and identity bolder and more engaging for current and future merchants.&nbsp;</p>\n\n\n\n<p>“Evolving our brand and our main product is crucial to our strategy of growing new stores, reaching new merchants, and maintaining our position as the world’s most popular commerce platform”, he explained.&nbsp;</p>\n\n\n\n<p>The animated logo has been a hit, drawing comments like “one of the best logos I&#8217;ve seen in a while” to “This is so darn cool.” BobWP of Do the Woo Podcast <a href=\"https://x.com/BobWP/status/1851528372054061090\">tweeted</a>, “In case you missed this. And coming from someone who used to design logos professionally, the simplest ideas, which now seem obvious, are the hardest. Great job!”&nbsp;</p>\n\n\n\n<p>Remkus de Vries of Within WordPress newsletter, shared his excitement <a href=\"https://x.com/remkusdevries/status/1851552009662386658\">saying</a>, “It&#8217;s very rare to see a rebrand with a new logo where I immediately go &#8220;Wow, that&#8217;s a huge improvement, I love it&#8221;, but when I saw this last week, that&#8217;s exactly what I thought.”</p>\n\n\n\n<p>Despite the enthusiasm, a few critics questioned the color choice, but WooCommerce Product Lead James Kemp has <a href=\"https://x.com/jamesckemp/status/1851355951166603264\">assured</a> that “the whole rebrand is super vibrant and the purple has been enhanced.”</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 Nov 2024 08:35: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:7:\"Jyolsna\";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:73:\"Gravatar: Choosing the Right Personalization Tool: Top 7 for Your Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://blog.gravatar.com/?p=2252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.gravatar.com/2024/11/07/website-personalization-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22795:\"<p>Are you struggling with high bounce rates and lackluster conversions on your website? You&#8217;re not alone. Many businesses find it hard to create engaging, relevant experiences for their online visitors, leading to missed opportunities and lost revenue because, as shown in a recent McKinsey report, <a href=\"https://www.mckinsey.com/capabilities/growth-marketing-and-sales/our-insights/the-value-of-getting-personalization-right-or-wrong-is-multiplying#/\">71% of consumers now expect personalized interactions from companies</a>.&nbsp;</p>\n\n\n\n<p>If you don’t provide them with one, you’re losing business, plain and simple.&nbsp;</p>\n\n\n\n<p>Thankfully, there are many website personalization tools that are transforming how businesses connect with their audience online. These tools enable companies to deliver individualized experiences that resonate with each visitor, going beyond traditional segment-based approaches.&nbsp;</p>\n\n\n\n<p>In the following sections, we&#8217;ll explore the top 7 personalization tools and their features, showing you how to unlock new levels of engagement and business success.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Introducing the top 7 website personalization tools</strong></h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1.</strong> <strong>Gravatar</strong></h3>\n\n\n\n<img width=\"1473\" height=\"918\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/gravatar-profiles-as-a-service.png\" alt=\"Gravatar homepage\" class=\"wp-image-2255\" />\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a> is a unique tool in the world of website personalization. It simplifies user profile management and enhances personalization based on users&#8217; email addresses, offering a distinct advantage by utilizing data already provided by users. This approach allows developers to personalize site experiences without extensive data collection.</p>\n\n\n\n<p>Gravatar offers two powerful APIs for integration:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://docs.gravatar.com/api/avatars/images/\">The Avatar API</a> that is designed specifically for requesting avatars.</li>\n\n\n\n<li><a href=\"https://docs.gravatar.com/\">The Profiles-As-A-Service API</a>, which enables developers to import comprehensive profile information.</li>\n</ol>\n\n\n\n<p>These APIs create a centralized hub where users can update their information once, and it syncs across all Gravatar-integrated sites. Gravatar has also introduced <em>Interests</em>, allowing users to list specific topics they&#8217;re interested in – something that can change the game for website owners looking to understand user preferences.&nbsp;</p>\n\n\n\n<img width=\"1511\" height=\"865\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/gravatar-interests-section.png\" alt=\"Gravatar Interests section\" class=\"wp-image-2256\" />\n\n\n\n<p>For example, an e-commerce site could show personalized product recommendations based on these interests.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users can create a <a href=\"https://blog.gravatar.com/2024/05/09/wordpress-profile-page/\">single avatar profile page</a> associated with their email address.</li>\n</ul>\n\n\n\n<img width=\"1032\" height=\"776\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/ronnie-gravatar-profile.png\" alt=\"Example of a Gravatar profile page\" class=\"wp-image-2257\" />\n\n\n\n<ul class=\"wp-block-list\">\n<li>This profile automatically appears on any Gravatar-enabled site, providing a consistent identity across platforms.</li>\n\n\n\n<li>Users can add important information such as avatar, bio, pronouns, and job info – update once, sync everywhere.</li>\n\n\n\n<li>Gravatar is natively supported by <a href=\"https://wordpress.org/\">WordPress</a>, enabling effortless avatar management for WordPress users and developers without additional plugins or code.</li>\n</ul>\n\n\n\n<p>For developers looking to import user profiles, integration with Gravatar&#8217;s profile API is needed. To streamline the user experience, it&#8217;s recommended to explain to users that they can control their avatar and profile information directly from their Gravatar profile.</p>\n\n\n\n<p><strong>Use cases:</strong> Gravatar is particularly beneficial for developers, bloggers, and business owners. It provides a consistent brand image across platforms and maximizes engagement by offering personalized user experiences.</p>\n\n\n\n<p><strong>Used by:</strong> Gravatar integrates with popular platforms like <a href=\"http://wordpress.com\">WordPress.com</a>, <a href=\"https://slack.com/\">Slack</a>, <a href=\"https://openai.com/\">OpenAI</a>, <a href=\"https://www.figma.com/\">Figma</a>, and <a href=\"https://mailchimp.com/\">Mailchimp</a>, demonstrating its versatility and wide-reaching impact.</p>\n\n\n\n<p><strong>Price:</strong> One of Gravatar&#8217;s standout features is its pricing model – or lack of. It&#8217;s a completely free service for site owners, developers, and users, and is run and supported by <a href=\"https://automattic.com/\">Automattic</a>. There&#8217;s no paid version and no usage limits, making it an accessible option for businesses of all sizes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Dynamic Yield&nbsp;</strong></h3>\n\n\n\n<img width=\"660\" height=\"379\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/dynamic-yield-homepage.png?w=660\" alt=\"Dynamic Yield homepage\" class=\"wp-image-2258\" />\n\n\n\n<p><a href=\"https://www.dynamicyield.com/\">Dynamic Yield</a> is a powerful player in the website personalization arena, known for delivering personalized onsite experiences through AI-powered targeting and real-time analytics.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Contextually relevant content:</strong> Delivers personalized content based on user behavior and preferences. For instance, a returning visitor interested in sports might see sports-related content prominently displayed on the homepage.</li>\n\n\n\n<li><strong>Product recommendations:</strong> Uses AI to suggest products based on browsing history and purchase patterns. An online retailer could use this to show complementary items to those in a user&#8217;s cart.</li>\n\n\n\n<li><strong>Personalized messages:</strong> Tailors messaging based on visitor behavior and characteristics. A travel website might show different promotional messages to first-time visitors versus frequent bookers.</li>\n\n\n\n<li><strong>Real-time personalization:</strong> Adapts content in real-time as users interact with the site. For example, a news site could reshuffle article placement based on what the user clicks on during their visit.</li>\n</ul>\n\n\n\n<p>Dynamic Yield integrates well with other tools to enhance personalization efforts, particularly <a href=\"https://segment.com/twilio/\">Twilio Segment</a>, a customer data platform enabling real-time data collection and action.</p>\n\n\n\n<p><strong>Use cases:</strong> Businesses can use Dynamic Yield to increase engagement and conversion rates, such as personalizing homepage experiences for returning visitors.</p>\n\n\n\n<p><strong>Used by:</strong> <a href=\"https://www.mcdonalds.com/us/en-us.html\">McDonald&#8217;s</a>, <a href=\"https://www.pacsun.com/?srsltid=AfmBOopO0JjIGm5h8VDxzygttVVXvTEK6hTqyyXzFsLeCnaxG9mugNBs\">PacSun</a>, <a href=\"https://www.cotopaxi.com/?srsltid=AfmBOorz7QhfPrt0CHN8RFdUjv_7VPTjcywAtK4ykdXSoYwhBNXT6eh8\">Cotopaxi</a>, among others.</p>\n\n\n\n<p><strong>Price:</strong> Dynamic Yield offers a customized pricing model tailored to each client&#8217;s specific needs and scale. For detailed pricing information, you&#8217;ll need to <a href=\"https://www.dynamicyield.com/request-demo/\">contact their sales team</a> directly.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Optimizely</strong></h3>\n\n\n\n<img width=\"660\" height=\"406\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/optimizely-homepage.png?w=660\" alt=\"Optimizley homepage\" class=\"wp-image-2259\" />\n\n\n\n<p><a href=\"https://www.optimizely.com/\">Optimizely</a> is a leading digital experience platform that empowers businesses to create, experiment, and personalize user experiences.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>A/B testing and multivariate testing: </strong>Allows testing of different page versions to identify the most effective elements. An e-commerce site could test different product page layouts to see which leads to more purchases.</li>\n\n\n\n<li><strong>AI-driven optimization:</strong> Uses machine learning to automatically optimize experiences. This could involve automatically adjusting the placement of call-to-action buttons based on user interaction patterns.</li>\n\n\n\n<li><strong>Personalized content delivery: </strong>Serves different content to different user segments based on their data. A software company might show different feature highlights to enterprise visitors versus small business owners.</li>\n\n\n\n<li><strong>Integrations:</strong> Make the most out of Optimizely by combining it with tools like Twilio Segment, <a href=\"https://marketingplatform.google.com/intl/en_uk/about/analytics/\">Google Analytics</a>, and <a href=\"https://business.adobe.com/\">Adobe Experience Cloud</a>.</li>\n</ul>\n\n\n\n<p><strong>Use cases:</strong> Businesses can increase engagement and conversion rates by running A/B tests on different versions of their product pages to identify the most effective elements.</p>\n\n\n\n<p><strong>Used by:</strong> <a href=\"https://www.ebay.com/\">eBay</a>, <a href=\"https://www.americanexpress.com/\">American Express</a>, <a href=\"https://www.dolby.com/\">Dolby</a>, <a href=\"https://www.fjallraven.com/eu/en-gb/\">Fjallraven</a>, among others.</p>\n\n\n\n<p><strong>Price:</strong> Optimizely offers a customized pricing model tailored to each client&#8217;s specific needs and scale. <a href=\"https://www.optimizely.com/plans/\">Contact their sales team directly</a> for detailed pricing information.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. HubSpot&nbsp;</strong></h3>\n\n\n\n<img width=\"660\" height=\"393\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/hubspot-homepage.png?w=660\" alt=\"Hubspot homepage\" class=\"wp-image-2260\" />\n\n\n\n<p><a href=\"https://www.hubspot.com/\">HubSpot</a> is a popular all-in-one CRM platform offering many powerful tools for marketing, sales, and customer service, with a strong emphasis on website personalization.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Smart Content: </strong>Dynamically adjusts website content based on user attributes and behavior. For example, a B2B site could show different case studies to visitors from different industries.</li>\n\n\n\n<li><strong>Personalized CTAs:</strong> Displays different call-to-action buttons to different user segments. A SaaS company might show a &#8220;<em>Start Free Trial</em>&#8221; CTA to new visitors and an &#8220;<em>Upgrade Now</em>&#8221; CTA to existing customers.</li>\n\n\n\n<li><strong>Automated workflows:</strong> Creates personalized user journeys based on user actions and characteristics. This could involve sending a series of targeted emails based on which resources a user has downloaded.</li>\n</ul>\n\n\n\n<p><strong>Use cases:</strong> Businesses can use HubSpot to increase engagement and conversion rates by delivering targeted CTAs to specific visitor groups.</p>\n\n\n\n<p><strong>Used By:</strong> <a href=\"https://www.tripadvisor.com/\">Tripadvisor</a>, <a href=\"https://www.eventbrite.com/\">Eventbrite</a>, <a href=\"https://www.weightwatchers.com/us/\">WeightWatchers</a>, and more.</p>\n\n\n\n<p><strong>Price:</strong> HubSpot offers <a href=\"https://www.hubspot.com/pricing/marketing/enterprise?hubs_content=www.hubspot.com%2F&hubs_content-cta=nav-pricing&term=annual\">tiered pricing plans</a> for their different products, which include marketing, sales, service, content, operations, and commerce. All of them start at $15/month per seat and can go up to $3,600/month, depending on what you need. They also have many free tools, so you can get a taste of the platform before you commit to subscribing.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Hyperise</strong></h3>\n\n\n\n<img width=\"660\" height=\"407\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/hyperise-homepage.png?w=660\" alt=\"Hyperise homepage\" class=\"wp-image-2261\" />\n\n\n\n<p><a href=\"https://hyperise.com/\">Hyperise</a> is a personalization platform that allows businesses to dynamically personalize images and content across various digital touchpoints.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Dynamic image personalization: </strong>Customizes images based on user data. A real estate site could show property images with the visitor&#8217;s name on the &#8220;For Sale&#8221; sign.</li>\n\n\n\n<li><strong>Personalized text overlays: </strong>Adds personalized text to images or videos. An online course platform could add the user&#8217;s name to certificate images in promotional materials.</li>\n\n\n\n<li><strong>CRM integration:</strong> Pulls data from CRM systems to personalize content. This allows for using detailed customer information, like past purchases or support interactions, in personalizing the web experience.</li>\n</ul>\n\n\n\n<p><strong>Use cases:</strong> Businesses can use Hyperise to create personalized landing pages for different audience segments, enhancing relevance and engagement.</p>\n\n\n\n<p><strong>Used by:</strong> <a href=\"https://www.g2.com/\">G2</a>, <a href=\"http://placer.ai\">Placer.ai</a>, <a href=\"https://www.salesloft.com/\">SalesLoft</a>, and <a href=\"https://orca.security/\">Orca Security</a>.&nbsp;</p>\n\n\n\n<p><strong>Price:</strong> Hyperise offers various pricing plans, depending on what you want included. Their <em>Images </em>plan costs $69/month per seat and lets you create personalized images for your outreach. The other two tiers include adding a website and videos.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>6. Marketing Cloud Personalization by Salesforce</strong></h3>\n\n\n\n<img width=\"660\" height=\"360\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/salesforce-homepage.png?w=660\" alt=\"Salesforce marketing personalization homepage\" class=\"wp-image-2262\" />\n\n\n\n<p><a href=\"https://www.salesforce.com/eu/\">Salesforce</a>, formerly known as Evergage, is a comprehensive customer data platform that now also includes a personalization engine as part of its marketing tools. Businesses can use their tools to create individualized experiences across multiple channels, including web, mobile, and email.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Real-time segmentation:</strong> Groups users based on their current behavior and historical data. An airline website could segment users based on their typical flight patterns and current browsing behavior.</li>\n\n\n\n<li><strong>Dynamic content personalization:</strong> Adapts content in real-time based on user segments and behavior. A media streaming service could adjust its homepage layout based on the user&#8217;s viewing history and current trends.</li>\n\n\n\n<li><strong>Journey orchestration</strong>: Creates and manages personalized customer journeys across multiple touchpoints. A bank could create different communication sequences for customers based on their life events, like buying a house or starting a business.</li>\n</ul>\n\n\n\n<p><strong>Use cases:</strong> Businesses can use Salesforce for personalized product recommendations and content tailored to individual shopping behaviors.</p>\n\n\n\n<p><strong>Used by:</strong> <a href=\"https://www.generalmills.com/\">General Mills</a>, <a href=\"https://www.formula1.com/\">Formula 1</a>, <a href=\"https://www.accenture.com/us-en\">Accenture</a>, among others.</p>\n\n\n\n<p><strong>Price:</strong> This service comes in <a href=\"https://www.salesforce.com/marketing/pricing/\">three tiers</a>: Marketing Cloud Engagement, Marketing Cloud Account Engagement, and Marketing Cloud Growth Edition. The first two tiers go for $1,250/month, while the third is $1,500/month per organization.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>7. Yieldify</strong></h3>\n\n\n\n<img width=\"660\" height=\"385\" src=\"https://blog.gravatar.com/wp-content/uploads/2024/10/yieldify-homepage.png?w=660\" alt=\"Yieldify homepage\" class=\"wp-image-2263\" />\n\n\n\n<p><a href=\"https://www.yieldify.com/\">Yieldify</a> is a platform designed to optimize customer journeys through personalized experiences and conversion rate optimization, focusing on e-commerce businesses.</p>\n\n\n\n<p><strong>Best features:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Personalized overlays and pop-ups: </strong>Creates targeted messages that appear based on user behavior. An e-commerce site could show a discount pop-up to users who are about to leave the site without purchasing.</li>\n\n\n\n<li><strong>Behavioral targeting: </strong>Tailors experiences based on user actions and characteristics. A fashion retailer could show different promotional banners to users based on the categories they&#8217;ve been browsing.</li>\n\n\n\n<li><strong>Data-driven insights:</strong> Provides analytics to help understand user behavior and optimize personalization strategies. This could help identify which personalization tactics are most effective for different user segments.</li>\n</ul>\n\n\n\n<p><strong>Use cases:</strong> Businesses can use Yieldify to reduce cart abandonment through exit-intent pop-ups and promote special offers based on user behavior.</p>\n\n\n\n<p><strong>Used by:</strong> <a href=\"https://www.lacoste.com/\">Lacoste</a>, <a href=\"https://www.kiehls.com/\">Kiehls</a>, <a href=\"https://int.clarins.com/\">Clarins</a>, <a href=\"https://www.thenorthface.com/\">The North Face</a>, among others.</p>\n\n\n\n<p><strong>Price:</strong> Yieldify offers customized pricing based on specific needs. <a href=\"https://www.yieldify.com/get-started/\">Contact them directly</a> to get started and obtain pricing information.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Selecting the ideal personalization tools for your website</strong></h2>\n\n\n\n<p>Choosing the right personalization tools for your website is crucial for maximizing engagement and conversion rates. Here&#8217;s how to approach this important decision:</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Understand your needs</strong></h3>\n\n\n\n<p>Before selecting a tool, identify your specific goals and challenges. Are you looking to improve user engagement, increase conversion rates, or streamline user profile management? Assess your current marketing stack and identify integration needs to ensure quick and easy implementation.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Evaluate key features</strong></h3>\n\n\n\n<p>Create a list of essential features you need in a personalization tool. Consider factors such as:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ease of use and integration</li>\n\n\n\n<li>A/B testing capabilities</li>\n\n\n\n<li>Real-time analytics</li>\n\n\n\n<li>User-friendly interfaces to reduce the learning curve for your team</li>\n</ul>\n\n\n\n<p><strong>Don&#8217;t overlook the importance of data privacy and security.</strong> Tools like Gravatar emphasize user control over personal information, allowing users to edit their public profiles and share only what they&#8217;re comfortable with. Ensure the tool complies with regulations such as <a href=\"https://gdpr-info.eu/\">GDPR</a> and <a href=\"https://oag.ca.gov/privacy/ccpa\">CCPA</a> for legal data handling practices.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Analyze cost and ROI</strong></h3>\n\n\n\n<p>Consider both short-term costs and long-term value when evaluating tools. Low-cost and free tools like Gravatar offer high value and low risk, making them excellent starting points for personalization efforts.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Success stories</strong></h3>\n\n\n\n<p>Look at real-world examples of companies successfully using personalization tools to drive growth. For instance, a great example of successful personalization is the plant-based cosmetics brand <a href=\"https://int.clarins.com/\">Clarins</a> which <a href=\"https://www.yieldify.com/success-stories/clarins/\">increased conversions by 20% using Yieldify</a>. Some of the strategies they implemented include:&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Adding virtual consultations to help users find the best products.&nbsp;</li>\n\n\n\n<li>Guiding users to book a complimentary phone consultation with a specialist on category pages.&nbsp;</li>\n\n\n\n<li>Re-engaging shoppers who try to change tabs with special overlays that include basket reminders and introducing Clarins’ three complimentary products that they offer with each order.&nbsp;</li>\n</ul>\n\n\n\n<p>Looking at examples like this will show you the full potential of the specific platform and maybe even give you some ideas on how you can implement similar strategies in your own business.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Make an informed decision</strong></h3>\n\n\n\n<p>Finally, whenever you can, take advantage of demos to better understand each tool&#8217;s capabilities before making a decision. Weigh the risk versus reward, keeping in mind that tools like Gravatar offer easy integration and are free to use, making them a low-risk option to start with.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Unlock the potential of your website with personalization tools&nbsp;</strong></h2>\n\n\n\n<p>Website personalization tools are powerful assets in enhancing customer engagement and boosting conversion rates. By tailoring user experiences, these tools provide a significant competitive advantage. In fact, <a href=\"https://www.mckinsey.com/capabilities/growth-marketing-and-sales/our-insights/the-value-of-getting-personalization-right-or-wrong-is-multiplying\">companies excelling at personalization generate 40% more revenue than their counterparts</a>.</p>\n\n\n\n<p>When choosing personalization tools, consider factors like powerful features, integration capabilities, and ROI measurement.&nbsp;</p>\n\n\n\n<p>Gravatar stands out with its unique advantage of utilizing existing user data for personalization without extensive on-site data collection. Its Profile API allows developers to create more detailed and personalized user experiences by integrating additional user information into their websites.</p>\n\n\n\n<p>As you explore the tools we&#8217;ve discussed, consider how they align with your business needs. Remember, <a href=\"https://gravatar.com/developers/new-application\">Gravatar is an excellent starting point</a> – it&#8217;s both highly useful and free.&nbsp;</p>\n\n\n\n<p>So what are you waiting for? Take the best out of website personalization and create experiences that your users will love!&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:\"Thu, 07 Nov 2024 17:33:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronnie Burt\";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:102:\"Do The Woo Community: Do the Woo is Trailbazing the Fediverse with Matthias Pfefferle and Derek Hanson\";s:7:\"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:28:\"https://dothewoo.io/?p=86690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://dothewoo.io/do-the-woo-is-trailbazing-the-fediverse-with-matthias-pfefferle-and-derek-hanson/\";s: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:87:\"Do the Woo is on the Fediverse with multi-authors, audio distribution and more to come.\";s: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 Nov 2024 10:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:112:\"Do The Woo Community: Press Release: Do the Woo 4.0 Official Launch, Elevating Voices in the WordPress Community\";s:7:\"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:43:\"https://dothewoo.io/?post_type=blog&p=86703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://dothewoo.io/blog/press-release-do-the-woo-4-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Press Release: The official launch of the Do the Woo Podcast Channel 4.0 takes place during WordCamp Europe in Turino, Italy.\";s: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 Nov 2024 15:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:93:\"WPTavern: #144 – Damon Cook &amp; Seth Rubenstein on the Transformational Interactivity API\";s:7:\"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=178900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/podcast/144-damon-cook-seth-rubenstein-on-the-transformational-interactivity-api\";s: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:41793:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to 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 blocks, the themes, and in this case, how the Interactivity API will transform your WordPress websites.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to wptavern.com/feed/podcast. And you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Damon Cook and Seth Rubenstein.</p>\n\n\n\n<p>Damon Cook is a developer advocate with WP Engine, and previously worked as a front end developer at several WordPress focused agencies.</p>\n\n\n\n<p>Seth Rubenstein began his WordPress journey in college, and is now the lead engineer at the Pew Research Center, where he works on interactive WordPress applications.</p>\n\n\n\n<p>This is the last of the podcast recorded at WordCamp, us 2024, and our focus today is the interactivity API. You may not be familiar with what this is and why it matters, so Damon and Seth will break it down, and explain how it might transform your WordPress websites in the future.</p>\n\n\n\n<p>Damon starts off by defining what an interactive website is, giving examples such as single page applications, and dynamic elements like tabs and accordions. Seth adds his perspective on how interactivity aids both the end user, and website editors. Making for a more compelling user experience and efficient content creation.</p>\n\n\n\n<p>We get into why WordPress needed an interactivity API, even though the platform already supports libraries, like React. The interactivity API provides a standardized way to create dynamic content, which is essential for modern web expectations.</p>\n\n\n\n<p>We also highlight real-world examples, including faceted searching and filtering, which have been successfully implemented using this API.</p>\n\n\n\n<p>The conversation also touches on performance improvements brought by the API, emphasizing how it can offload server resources by only updating necessary content.</p>\n\n\n\n<p>Towards the end we explore how the API is being used in Gutenberg blocks, and how it supports both developers and site builders.</p>\n\n\n\n<p>Damon and Seth also discussed the project&#8217;s development, encouraging more contributions and feedback from the community.</p>\n\n\n\n<p>If you&#8217;re intrigued by improving your websites&#8217; interactivity and performance, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Damon Cook and Seth Rubenstein.</p>\n\n\n\n<p>I am joined on the podcast today by Damon Cook and Seth Rubenstein. Hello.</p>\n\n\n\n<p>[00:03:40] <strong>Damon Cook:</strong> Hey, how&#8217;s it going?</p>\n\n\n\n<p>[00:03:41] <strong>Nathan Wrigley:</strong> Yeah, really, really nice thank you. That&#8217;s Damon.</p>\n\n\n\n<p>[00:03:44] <strong>Seth Rubenstein:</strong> Hello, I&#8217;m Seth.</p>\n\n\n\n<p>[00:03:45] <strong>Nathan Wrigley:</strong> Thank you so much. We&#8217;re at WordCamp US, it&#8217;s happening in Oregon. It is the month of September 2024, and I&#8217;m being joined by Damon and Seth so that we can talk about the Interactivity API.</p>\n\n\n\n<p>Before we get into that, I think it&#8217;s probably important to paint a picture of both of you, what your background is with WordPress technology, et cetera. So we&#8217;ll just keep this very brief. Let&#8217;s go for Damon first. Damon, just tell us a little bit about you, your potted bio, if you like.</p>\n\n\n\n<p>[00:04:10] <strong>Damon Cook:</strong> Sure, yeah. Well, I started out as a WordPress front end developer at WordPress. There&#8217;s several different WordPress focused agencies, and now I&#8217;m a developer advocate with WP Engine.</p>\n\n\n\n<p>[00:04:21] <strong>Nathan Wrigley:</strong> Thank you very much. And Seth?</p>\n\n\n\n<p>[00:04:23] <strong>Seth Rubenstein:</strong> My first time using WordPress was in college. I converted all of our websites to WordPress multi-site, as like the assistant web developer. And from there I just kept going, and that was just my career track from then on, just WordPress all the time. And now I am the lead engineer at the Pew Research Center, where we have a WordPress platform that we&#8217;ve made ourselves, and we work on a lot of interactive WordPress applications.</p>\n\n\n\n<p>[00:04:43] <strong>Nathan Wrigley:</strong> Just staying on your bios just for a moment, what does the Pew Research Center do? I&#8217;ve not heard of them before.</p>\n\n\n\n<p>[00:04:49] <strong>Seth Rubenstein:</strong> We are a non-partisan, non advocacy social science research organisation. So we basically study the American public and where they are, what they think on certain issues. And we do a lot of public polling and things like that, and we report that back. So we&#8217;re kind of like a nonprofit news organisation.</p>\n\n\n\n<p>[00:05:04] <strong>Nathan Wrigley:</strong> Gosh, okay thank you. That&#8217;s really interesting.</p>\n\n\n\n<p>Okay, let&#8217;s open it up and talk about the subject at hand today. So we&#8217;ve got both of these gentlemen here to talk about the Interactivity API. I think probably we should first deal with the topic of, what is an interactive website?</p>\n\n\n\n<p>Probably, dear listener, if you&#8217;re listening to this, you might know this already, but I have an intuition that some people won&#8217;t. So, what are the benefits of having an interactive website? And whoever wants to answer that, pick up the mic and go for it.</p>\n\n\n\n<p>[00:05:30] <strong>Damon Cook:</strong> I think the classic example is that of a single page application. So the idea of being able to navigate from page to page, or section to section even, and just have things that seem seamless, so the page isn&#8217;t refreshing, that is a pretty common scenario. But there&#8217;s also lots of other interactive pieces like tabs, accordions, all that stuff gets really helpful when you reach for the Interactivity API in creating stuff like that.</p>\n\n\n\n<p>[00:05:59] <strong>Seth Rubenstein:</strong> I don&#8217;t have anything to add to that. I guess what I would say is, on the other side of it besides the front end user, the kind of, your visitor, I think the interactivity part of a website kind of also can help out your editors, and how they&#8217;re building content, and making more engaging content.</p>\n\n\n\n<p>I think this will be interesting because I think, you know, Damon might have a kind of perspective of the front end user, and I&#8217;m definitely coming from a perspective of, how can I scale up my editorial team&#8217;s ability to create interactive content? And not so much like what it looks like on the front end.</p>\n\n\n\n<p>[00:06:27] <strong>Nathan Wrigley:</strong> So there&#8217;s an interesting distinction there. So, does the work that you are doing touch on both the front end and the back end? So it&#8217;s not just for the forward facing, user facing part of a WordPress website. This is things that you can do in the back end, the admin side of things too.</p>\n\n\n\n<p>[00:06:40] <strong>Seth Rubenstein:</strong> Yeah, it&#8217;s how editors create interactive bits of content, and how those interactive bits of content might interact with each other. Because I think right now, without the Interactivity API, that kind of content is static and siloed on the page.</p>\n\n\n\n<p>[00:06:52] <strong>Nathan Wrigley:</strong> We will link in the show notes to all of the different places, and no doubt one of the first links will be to the project itself, the Interactivity, API. But I guess I have to ask the question, why is this even a project in WordPress? Is it that WordPress historically wasn&#8217;t particularly adapted towards interactive content?</p>\n\n\n\n<p>I mean, we know how to publish posts and pages, and once you&#8217;ve done that, that&#8217;s kind of it. You&#8217;ve done it, and there&#8217;s no interactivity there. Is this something that has been, I don&#8217;t know, more recently thought was necessary? Is this something that you think should be in Core? Let&#8217;s just take that. Has WordPress been bad at interactivity historically?</p>\n\n\n\n<p>[00:07:28] <strong>Damon Cook:</strong> I don&#8217;t think that it&#8217;s been bad historically, I think that it&#8217;s more of kind of a, I guess a technology trend of leaning into libraries like React or Preact, which Interactivity is built upon. So I think it&#8217;s more of a trend, but also, yeah, a necessity in Core, because folks are trying to build these types of experiences, and we want to have a standardised way for them to be able to do that, and not have to pull in a bunch of different libraries. And although they still can, you know, there&#8217;s a standardised and backwards compatible way for them to do it. So that&#8217;s the idea.</p>\n\n\n\n<p class=\"ticss-13c01dd4\">[00:08:05] <strong>Nathan Wrigley:</strong> Thank you. Seth, anything to add?</p>\n\n\n\n<p>[00:08:06] <strong>Seth Rubenstein:</strong> Yeah. I don&#8217;t think WordPress has done a bad job on interactivity in the past, you know, ships with jQuery, ships with React, that&#8217;s all available to you. I think the Interactivity API is kind of looking at how developers have been creating front end experience with React, and narrowing that down to be like the right tool set for blocks and for block developers specifically.</p>\n\n\n\n<p>[00:08:26] <strong>Nathan Wrigley:</strong> So it&#8217;s about having the right tooling. Something standardised that everybody can get their teeth into, that every developer understands.</p>\n\n\n\n<p>[00:08:32] <strong>Seth Rubenstein:</strong> Yeah, and something that fits the blocks kind of model I think, a little bit better than some of these other frameworks.</p>\n\n\n\n<p>[00:08:38] <strong>Nathan Wrigley:</strong> Okay, that&#8217;s great. So give us some examples of good interactivity on the internet. So we could limit ourselves to WordPress, but let&#8217;s not do that. Let&#8217;s just go out there and try to pick good examples.</p>\n\n\n\n<p>Really, I guess we could be talking about Google Docs, we could be talking about websites, we could be talking about anything. Do you want to just rattle off a few things where you&#8217;ve seen and you&#8217;ve been impressed, and thought, ah okay, there&#8217;s a good example. The only reason I&#8217;m asking this really is so that the listener can just get an idea of what interactivity means.</p>\n\n\n\n<p>[00:09:05] <strong>Damon Cook:</strong> Sure. And I&#8217;m actually going to set up Seth, because I think a lot of the things that his organisation is creating are representative of what folks kind of need. So I&#8217;ll set him up for that.</p>\n\n\n\n<p>[00:09:17] <strong>Seth Rubenstein:</strong> And I&#8217;ll say the word that he&#8217;s probably thinking of, facets. Amazon, you&#8217;re browsing Amazon, you want to narrow down the content that you&#8217;re looking at. Those facets on the left hand side, filters, aggregations, whatever you want to call them. I think this has probably been our biggest success with the Interactivity API, is developing out facet blocks.</p>\n\n\n\n<p>And with the Interactivity API what that would let you do is just server side hydrate data before it gets back to the client. And you can browse through all this content, and do it in a performant way that you just couldn&#8217;t do before. Or you could, but it would take a lot of work on your part to build out the framework and the technology to handle all that.</p>\n\n\n\n<p>And so now that&#8217;s just in the box in WordPress free to use. So we can probably touch on facets a little bit more later, but I think that&#8217;s probably the best use case for the Interactivity API thus far.</p>\n\n\n\n<p>[00:10:00] <strong>Nathan Wrigley:</strong> Let&#8217;s dig into that a little bit. So when you say facets, my head is immediately going to things like, I don&#8217;t know, the posts and pages, table layout, or something like that. And the fact that, if I want to get to post number 11, I might have to click a button, wait for a moment whilst the page refreshes, there&#8217;s obviously something going on there, page refresh, I&#8217;m contacting the server and what have you. Is the idea here that, a bit like, I don&#8217;t know, if I scroll on Google, I would be able to automatically upload more pages, more posts, that kind of thing? And then be able to, I don&#8217;t know, say filter them, show me only the ones that are authored by me, or ones with featured images, and that would all happen on the fly.</p>\n\n\n\n<p>[00:10:35] <strong>Seth Rubenstein:</strong> Yeah. So, you know, you can filter by author, by taxonomies, category, custom taxonomies, whatever, date, et cetera. And those results just update in real time, without you having to refresh the page.</p>\n\n\n\n<p>You can paginate through those results without having to refresh the page. That, of course, is great for the end user, but it&#8217;s also great on the backend because you&#8217;re saving server resources without having to re-render that entire page every single time. So you&#8217;re only rendering out what&#8217;s changed.</p>\n\n\n\n<p>So in that way, great for the end user and great for you as a website operator, because the Interactivity API kind of offloads some of that performance overhead that way.</p>\n\n\n\n<p>[00:11:07] <strong>Nathan Wrigley:</strong> Yeah, okay. I have children, and they have been born in a world where the mobile phone is completely ubiquitous. And the idea of anything refreshing to them just seems like an anathema, just a pointless thing. You know, you want to open an app, and from that moment just everything happens. You scroll, there&#8217;s more to see, you press back, it just immediately loads and what have you.</p>\n\n\n\n<p>Is that kind of where we&#8217;re going with the internet? And what I mean by that is, sites where you&#8217;ve got to click a button to see another further piece of content, or for your shopping cart to be updated, or whatever it may be, that just seems like the 1990s almost.</p>\n\n\n\n<p>Is it a bit of that? Is it just we&#8217;re kind of keeping up with the times? And the expectation from the next generation of users is going to be, well, if it isn&#8217;t interactive, I&#8217;m not sticking around. So if I&#8217;ve got a, I don&#8217;t know, a WooCommerce store or something like that, it&#8217;s going to be painful for a user to have to refresh, click a button to go to a cart, wait for it to load and all that. It&#8217;s just, like I said, the 1990s.</p>\n\n\n\n<p>[00:12:05] <strong>Damon Cook:</strong> Yeah, I think a lot of it does touch on that and, yeah, just reaching out to that kind of experience. But, yeah, I think Seth touched on this, but the performance impact is pretty great about the Interactivity API because you&#8217;re only updating the sections, or components on the page that are really relevant to what the user is doing. So that has a performance impact. It makes things feel seamless, faster, and I think that&#8217;s a lot of probably what we&#8217;re all looking for at the end of the day.</p>\n\n\n\n<p>[00:12:30] <strong>Nathan Wrigley:</strong> It feels like something more native to the device that you are on. So it feels like a Mac app, or a Windows app, or an Android, or an iPhone app. Does that kind of make sense? It just feels like we&#8217;re in the modern world, not in the old world where any kind of refresh just seems bizarre, frankly. Anything to add, Seth?</p>\n\n\n\n<p>[00:12:46] <strong>Seth Rubenstein:</strong> You know, I think the coolest part about this is it basically lets you take a PHP application and turn it into a single page JavaScript app. I mean, that&#8217;s really what the Interactivity API as a whole is doing. And I think that&#8217;s what developers are looking for these days. Look at, you know, Next.js, and frameworks like that that are really grown and are really popular. And I think that this kind of API just is an answer to those for WordPress developers.</p>\n\n\n\n<p>[00:13:06] <strong>Nathan Wrigley:</strong> So if I were a developer and I was, I don&#8217;t know, creating plugins, themes, blocks, whatever it may be, where do I go and find out about this? How do I get my teeth into the project? So you might want to drop a URL at this point, wherever you want to point us.</p>\n\n\n\n<p>[00:13:20] <strong>Damon Cook:</strong> Sure. Well, I can tell you how I find it because I Google it. I Google it myself. Interactivity API Handbook, I&#8217;m pretty sure that&#8217;s where you&#8217;ll find it, and developer.wordpress.org. The documentation is very thorough, and up to date, and complete. And I think that&#8217;s what&#8217;s excites me about this API because it&#8217;s a very discreet project that kind of got pulled together and, yeah, the documentation is really up to date and great, so that&#8217;s where I&#8217;d go.</p>\n\n\n\n<p>[00:13:47] <strong>Nathan Wrigley:</strong> Okay, I will link to that in the show notes. And probably a good idea, dear listener, to pause at this point, go and check that out and then come back and hit play.</p>\n\n\n\n<p>So from the developer sort of point of view, how baked is it? How complete is it? Is there a lot that you have achieved already? Is there a big roadmap for things that you want to achieve?</p>\n\n\n\n<p>I know that&#8217;s going to be difficult to encapsulate in a few sentences, but just tell us the state of the project now for developers listening to this, they might have some intuitions as, okay, that sounds like something I could use right now, as opposed to the roadmap features that are still going to come.</p>\n\n\n\n<p>[00:14:17] <strong>Damon Cook:</strong> Sure. No, it is quite complete and ready to use, and the documentation can even step you through how to integrate it into an existing block. You can even spin up a new block with the Interactivity API already baked in.</p>\n\n\n\n<p>Some of the future roadmap areas is, I know that we&#8217;re still working on like client side navigation, and then pulling in kind of different modules. Like I know one experiment that&#8217;s being explored is, there&#8217;s a package for accessibility. So just the general idea of speaking, screen reader, passing along. So these APIs have been in WordPress for a while, like some of the accessibility packages. So there&#8217;s explorations in kind of porting that over, and pulling it in, because the Interactivity APIs uses JavaScript modules for a lot of this. So it&#8217;s kind of re jigging, I guess, some of the code and pulling in some of these packages so that developers can use kind of those old, not old, but accessibility features, and have all that compatibility baked in.</p>\n\n\n\n<p>So that&#8217;s some of the areas that are still getting integrated, and I&#8217;m excited for them. And I think that&#8217;s on the roadmap right now, and there&#8217;s folks contributing towards it.</p>\n\n\n\n<p>[00:15:24] <strong>Seth Rubenstein:</strong> The modules area is probably, I think probably the area that it needs the most work, and hopefully the most amount of work is going into. I would say that&#8217;s probably one of the roughest parts of the Interactivity API right now is, if you need to use an external script, or kind of library, or framework, it&#8217;s a little difficult to get that in. So I think that&#8217;s probably where the most amount of work&#8217;s going to be going.</p>\n\n\n\n<p>And I think there&#8217;s some work going on WordPress URL, bringing that in as well. And there&#8217;s a few more directives too, to the API, that are being added like wp-show which should be interesting, that should let you dynamically hydrate elements on the page in a different way. I won&#8217;t go to like all the technical details on that, but there are some additional features that are coming to the Interactivity API, beyond just the module stuff. So there are, in the Interactivity API parlance, there are new directives coming soon.</p>\n\n\n\n<p>[00:16:05] <strong>Nathan Wrigley:</strong> I think for anybody who is a developer, you&#8217;re going to be fine looking at the documentation. But if I say any acronym on this podcast, I always get some pushback from people who are not developers, WordPress end users. So let&#8217;s address that.</p>\n\n\n\n<p>Is there going to be functionality within the Interactivity API, although it&#8217;s there, and it is part of the Interactivity API, will be available to just builders of websites? People who have their own blog, or their own property, they&#8217;re not interested in WordPress from a technical point of view. Is there anything that they can do with it so that they can have this sort of dynamic content? Or is it mainly going to be through the work that developers do, through plugins, and blocks, and what have you?</p>\n\n\n\n<p>[00:16:44] <strong>Seth Rubenstein:</strong> Right now. It&#8217;s live, already on your site if you&#8217;re running kind of the latest version of WordPress. The light box in the image block is using the Interactivity API. So site builders are already gaining that Core query, already has interactivity built in. So does the pagination block. So your publication pages can already be kind of a single page JavaScript app. So Core is adding that stuff in and, yeah, obviously plugin developers will also hopefully add interactivity to their plugins, but it&#8217;s already there for site builders.</p>\n\n\n\n<p>[00:17:11] <strong>Nathan Wrigley:</strong> It feels like we&#8217;ve gone down the road in WordPress where everybody&#8217;s done their own thing with interactivity. The page builders have done, well, not just the page builders as one block, but each page builder has done a different thing. You&#8217;ve got these multitude of plugins that do the sort of facet searching and all of that kind of thing.</p>\n\n\n\n<p>The idea that there&#8217;s just going to be this one thing, I suppose in a sense you kind of want the Interactivity API to not really be that well known about. The idea is for it to sort of fade into the background and nobody even realise that there&#8217;s a thing. Is that sort of doing down the project a little bit, or is that kind of the point? If nobody knows it exists, but it works, that&#8217;s kind of the ideal.</p>\n\n\n\n<p>[00:17:45] <strong>Damon Cook:</strong> Yeah, I mean these APIs are in the background, yeah, for developers to explore, and use, and pull in, and integrate. But yeah, at the end of the day, the end user shouldn&#8217;t know about it, have to know about any of this, and just, have a great experience. So yeah, I think that&#8217;s the idea.</p>\n\n\n\n<p>[00:18:00] <strong>Nathan Wrigley:</strong> Where do you learn what you should be working on? So the team of volunteers and seconded people that are working on the Interactivity API, who are you listening to? Where do you get your feedback from? And I know in the open source world, it&#8217;s hard to get that feedback. And you might be just listening to a dozen voices, interested people, or there may be, I don&#8217;t know, hundreds of people talking to you. But to drive it forward, who are you listening to? Where do you get your intuitions as to what should be on the roadmap?</p>\n\n\n\n<p>[00:18:25] <strong>Damon Cook:</strong> There is a Make Slack Group, it&#8217;s Interactivity API I believe, or Core Interactivity API room. But there&#8217;s some great contributors in there, and I&#8217;m probably going to mess up all their names but there&#8217;s Jon Surrell, I believe, and Greg Ziółkowski. I apologise Greg, I tried. But they are very active contributors and I probably feel like the least contributor. But, yeah, they&#8217;ve been doing a great job.</p>\n\n\n\n<p>I think what it comes down to historically, the Frontity team, I&#8217;m not sure if you&#8217;re familiar with that project, but back in the day they kind of got integrated. All these smart folks into Automattic as full-time contributors, and a lot of them have been driving this project daily and contributing towards it, and they&#8217;ve been doing an amazing job. Some other folks, I think from Google, also contribute a lot towards Interactivity API. So that&#8217;s what I follow, they&#8217;re all in that room a lot and very active.</p>\n\n\n\n<p>[00:19:20] <strong>Seth Rubenstein:</strong> That&#8217;s almost everybody. I don&#8217;t know if you mentioned Luis, he&#8217;s kind of my main point of contact. I ping him with questions, or ideas or, hey, we&#8217;re going to try to do this, does this sound crazy to do with the Interactivity API? And he&#8217;s pretty receptive.</p>\n\n\n\n<p>[00:19:32] <strong>Nathan Wrigley:</strong> Would it be fair to say that you could do with some more helpers though? I think in the open source world we could always use some more people flocking around any particular given project. Is that something that you&#8217;d be interested in? I don&#8217;t know, one of the intentions of a podcast like this is to make things like that happen but, yeah, is that a thing?</p>\n\n\n\n<p>[00:19:47] <strong>Seth Rubenstein:</strong> I would like to see a lot more people using an API. You know, we&#8217;re trying to push the limits of the API, and I think it&#8217;s important that we all kind of try to push the limits and see where it needs additional work, or where we might need extra functionality. So I&#8217;d love to see a lot more people using it because I just don&#8217;t think it&#8217;s gotten kind of the critical mass yet.</p>\n\n\n\n<p>[00:20:04] <strong>Nathan Wrigley:</strong> Can you give us some nice examples that I could link to in the show notes of situations where you&#8217;ve seen, specifically the Interactivity API. We mentioned earlier about, you know, general websites and what have you.</p>\n\n\n\n<p>Are there any good examples where you&#8217;ve seen somebody using it, so that if there is a developer looking at this, they can go, oh okay, that&#8217;s the kind of thing we&#8217;re talking about.</p>\n\n\n\n<p>[00:20:21] <strong>Damon Cook:</strong> I certainly can share some links. I have some repos on GitHub where I&#8217;ve built custom blocks and I&#8217;ve done, I believe there&#8217;s a YouTube, at least a recording of a presentation where I&#8217;ve gone step through building, some of these custom blocks and they&#8217;re all in my repo.</p>\n\n\n\n<p>I was going to hand it off to Seth, I guess again, because I know one block that stood out to me that him and his team have created is like a, well, I think you have a poll, but also like a table filtering. I mean, I think those are pretty common experiences that we see on sites, and they&#8217;ve done a great job in creating that seamless experience of filtering.</p>\n\n\n\n<p>[00:20:56] <strong>Seth Rubenstein:</strong> I can just gush for a moment. If you want a good example, www.pewresearch.org, almost everything that you&#8217;re going to see there is using the Interactivity API. Mega Menus, MailChimp newsletter signups, facets, pagination, table of contents. That updates as you scroll through the page, because the chapter blocks report using the Interactivity API to the table of contents block, which is separate, their position. Data tables, charts, quizzes, you name it, pretty much everything that we have on our website is using the Interactivity API at this point.</p>\n\n\n\n<p>There&#8217;s a few plugins that we still have to convert, it&#8217;s actually only two. But almost everything that you see there is using the API, and almost all that code is available for free open source on github.com/pewresearch.</p>\n\n\n\n<p>[00:21:39] <strong>Nathan Wrigley:</strong> Did you do that yourself because you are knee deep in the weeds of this, and so you could understand easily how to do that? Or would it be true to say that the developer documents that you&#8217;ve just mentioned would steer any, air quotes, competent developer to be able to achieve that? Or is it just that you know, you&#8217;ve got the Interactivity API, you also work for this organisation, so the two met.</p>\n\n\n\n<p>[00:21:58] <strong>Seth Rubenstein:</strong> I think it&#8217;s because we wanted to provide learning resources, we wanted to provide a use case of, here&#8217;s what is possible. Obviously I&#8217;m talking about a lot of blocks that are interactive, but one of the things that I could really go into is our concept around the Interactivity API.</p>\n\n\n\n<p>I think a lot of examples that people can point to, it&#8217;s a very specific use case. This block is a collapsible block, you click on it and it expands. We&#8217;ve taken a different approach, something that we call Atomic Interactive Blocks. And so we&#8217;ll make a block and it will have some interactivity instructions and functionality, but the point of that is to be dropped into another block, which has its own interactivity, and instructions, and functionality, and so on and so forth.</p>\n\n\n\n<p>And so what we&#8217;ve really done is made a library of interactive blocks that kind of act like React components, and that you can drop them in other use cases and style them however you want, but what they do is defined maybe higher up.</p>\n\n\n\n<p>Yeah, so I think to me that&#8217;s really the power of the Interactivity API, because what that allows us to do is, as developers, is just maintain a small library of blocks that are programmed to do a lot of things, and interact with a lot of other blocks, but then hand off styling, and content, and all that stuff to designers and other people.</p>\n\n\n\n<p>For me, that&#8217;s been the coolest part about the Interactivity API, is this abstraction out of a block of what it does. We can go into it more, but the interactive stores can communicate with one another, and so you can have block A do a very specific thing, you click on it and it opens. And maybe you put that inside of block B, and block B is aware, well, when block A is set to be open, when its state is set to be open, I need to do this. And so, you know, you can imagine, you can make a button block, and use that in infinite applications.</p>\n\n\n\n<p>The way that we approach it though, that block can dynamically target an interactive store rather than statically being set to just do this one thing in this one interactive store. So all of those GitHub repos will provide examples of how that kind of system works, and how you might approach the same thing for your organisation or website.</p>\n\n\n\n<p>[00:23:48] <strong>Damon Cook:</strong> I think what Seth touched upon is interesting because I think it says a lot kind of to how the API has been built to abstract some of these ideas, and just shared state between components. So like you touched on, a button can be shared, and so many are used in so many contexts, but to be able to abstract that and share state, and the interactivity between these components is, it shows a lot of, the API has been built smartly so that it can be explored and experimented with, which is neat.</p>\n\n\n\n<p>[00:24:19] <strong>Nathan Wrigley:</strong> I think one thing about this topic is that it is possible, probably, to go a bit overboard with being interactive. I&#8217;ve got the API, I know how to use it now, I&#8217;m going to make everything interactive. And I guess there&#8217;s a point where you&#8217;ve got to tell yourself, slow down, not everything needs to be interactive. So let&#8217;s just go into that. Are there any uses which you would say, yeah, you could do that interactively but we probably shouldn&#8217;t? Are there any times where you think, let&#8217;s put the brakes on?</p>\n\n\n\n<p>[00:24:45] <strong>Damon Cook:</strong> I mean, I think any developer will kind of realise when they&#8217;ve maybe over-engineered something. There&#8217;s always going too far and making everything, yeah. You&#8217;ll know I think if you&#8217;re trying to make everything interactive, every paragraph or, you know, it&#8217;s just kind of pointless. But the exciting part is that you can experiment and explore, interact with these APIs and see what you can do. And find the edges of what you can do, and what you should do, or shouldn&#8217;t do, that&#8217;s the fun part.</p>\n\n\n\n<p>[00:25:10] <strong>Seth Rubenstein:</strong> Yeah, I will say that, is it possible that you can do too much? For sure. Technically speaking though, is it possible that you can do too much? I don&#8217;t think so. Like I said, we have a lot of interactivity blocks on a page, and the performance has been great. So I don&#8217;t think there should be a concern of like, oh, I&#8217;m overdoing it with using the Interactivity API in terms of performance. I think the more things you make with the Interactivity API, the better performance you&#8217;re going to get.</p>\n\n\n\n<p>[00:25:33] <strong>Nathan Wrigley:</strong> Let&#8217;s just speak to the performance side of things because you mentioned technically how it&#8217;s achieved a little bit, but could we just develop that a little bit? And you&#8217;ve definitely said performance isn&#8217;t affected, or performance is really great a number of times. What does that actually mean? So if I&#8217;m using this, is it a more performant website because it&#8217;s, I don&#8217;t know, it&#8217;s loading content asynchronously or what have you?</p>\n\n\n\n<p>Has there been any situations where you&#8217;ve had to, I don&#8217;t know, refactor things because the performance took a dip. Performance at the moment is everybody&#8217;s big worry, isn&#8217;t it? Because, you know, Google takes those metrics and ranks you accordingly. So we kind of want to know that if we make this thing interactive, it&#8217;s not going to suddenly impact our score. And I know that Google does take note of these kind of things.</p>\n\n\n\n<p>[00:26:11] <strong>Seth Rubenstein:</strong> Yeah, I think on the performance bit, I mean, to get a little technical, what makes it so performant is kind of that idea of server side hydration, right? You click on something and that element changes, and that can happen client side, but if it needs a new data, that in the past has meant refreshing the page or doing something really kind of complex and technical.</p>\n\n\n\n<p>Now when the data changes and when that element needs to change, that one element re renders on the server, and then it&#8217;s returned back to the client, not the whole page. So that right there is an immediate performance savings because you&#8217;re not having to render a whole page out again, just to get this one little bit of changed information on a page.</p>\n\n\n\n<p>[00:26:45] <strong>Nathan Wrigley:</strong> Let&#8217;s get into probably the final thing for today, and that is the accessibility perspective of things. It&#8217;s become the watch word I think of 2023, 2024, and probably it&#8217;ll carry on, rightly so.</p>\n\n\n\n<p>Has there been any accessibility concerns? Because obviously if you&#8217;re updating content live on the page, is there anything that we need to be concerned about if we&#8217;re developing with the Interactivity API in terms of the accessibility, I don&#8217;t know, screen readers or other assistive technologies.</p>\n\n\n\n<p>[00:27:12] <strong>Damon Cook:</strong> Sure, yeah. I think it&#8217;s always a challenge in building your components, and making sure they&#8217;re interactive. So I think that it&#8217;s really kind of just abstracting things, trying to figure out what your HTML is, what your CSS is, and then layering on the Interactivity API. I know that some of the extensions of pulling in like strings of information that are being updated on the page, like some of the older packages, like the accessibility, or a11y, for the acronym. Some of these packages that have been in Core for a while, they&#8217;re being ported over into the Interactivity API.</p>\n\n\n\n<p>That&#8217;s something that&#8217;s kind of on the roadmap and being explored right now, so that we can have some of these screen reader updates for components, and on the page be integrated with the Interactivity API. So that&#8217;s, yeah, definitely something that&#8217;s being explored.</p>\n\n\n\n<p>But also, yeah, a lot of it is more of just the approach because just the markup and the CSS alone, having the knowledge of how to make that accessible is always a practice, an art form, and something that is always, can be improved.</p>\n\n\n\n<p>[00:28:17] <strong>Nathan Wrigley:</strong> Okay, thank you. Anything, Seth?</p>\n\n\n\n<p>[00:28:19] <strong>Seth Rubenstein:</strong> I think that there&#8217;s actually probably better accessibility that you&#8217;re going to get out of the Interactivity API. You know, I know that screen readers and assistive technologies have come a long way, but if a lot of your website relied on React, and other JavaScript frameworks that render after the page has been rendered, that could pose a problem for accessibility technologies. Here, all that stuff is pre-hydrated and pre-rendered before the page even loads. So your markup&#8217;s ready to go as soon as the page loads, which is actually great.</p>\n\n\n\n<p>[00:28:46] <strong>Nathan Wrigley:</strong> I think probably time has caught up with us. But before we go, we did mention the URLs and where you can find the project. Let&#8217;s just, firstly, go through where we can find you individually. So that might be an email, a Twitter handle, or whatever it might be. So let&#8217;s go to Damon first. Where can people find you if they&#8217;re interested in catching up?</p>\n\n\n\n<p>[00:29:03] <strong>Damon Cook:</strong> I think probably the easiest is X, I still call it Twitter. I am dcook. I&#8217;m always open. Yeah, reach out. I think 99% of my Twitter timeline is sharing WordPress ideas, outreach links. So yeah, you&#8217;ll find me for any WordPress stuff there.</p>\n\n\n\n<p>[00:29:21] <strong>Nathan Wrigley:</strong> Thank you so much. And, Seth?</p>\n\n\n\n<p>[00:29:22] <strong>Seth Rubenstein:</strong> You can also find me on Twitter, which I refuse to call X. Twitter.com/sethrubenstein. And I also share a bunch of Interactivity API and WordPress stuff.</p>\n\n\n\n<p>[00:29:29] <strong>Nathan Wrigley:</strong> Thank you. So this is the bit where I ask, is there anything that we missed? Is there something that you desperately wanted to get across that I failed to ask?</p>\n\n\n\n<p>[00:29:36] <strong>Damon Cook:</strong> To go back just a little bit, he was touching on performance. So one thing actually I wanted to speak to was the idea of the Interactivity API is a standard means for developers to pull in these kind of libraries and do interactivity experiences. And so using this API, you&#8217;re relying on, you know, a simple small bit of source code that is going to be integrated on every page. So that performance impact of not having to pull in an entire library, so it makes it a smaller source code that&#8217;s being pulled in, so that has a huge performance impact as well.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://us.wordcamp.org/2024/speaker/damon-cook/\">Damon Cook</a> and <a href=\"https://us.wordcamp.org/2024/speaker/seth-rubenstein/\">Seth Rubenstein</a>.</p>\n\n\n\n<p>This is the last of the podcasts recorded at WordCamp US 2024, and our focus today is the Interactivity API. You may not be familiar with what this is and why it matters, so Damon and Seth will break it down, and explain how it might transform your WordPress websites in the future.</p>\n\n\n\n<p>Damon starts off by defining what an interactive website is, giving examples such as single-page applications and dynamic elements like tabs and accordions. Seth adds his perspective on how interactivity aids both the end-user and website editors, making for a more compelling user experience and efficient content creation.</p>\n\n\n\n<p>We get into why WordPress needed an Interactivity API, even though the platform already supports libraries like React. The Interactivity API provides a standardised way to create dynamic content, which is essential for modern web expectations.</p>\n\n\n\n<p>We also highlight real-world examples, including faceted searching and filtering, which have been successfully implemented using this API. The conversation also touches on performance improvements brought by the API, emphasising how it can offload server resources by only updating necessary content.</p>\n\n\n\n<p>Towards the end, we explore how the API is already being used in Gutenberg blocks and how it supports both developers and site builders. Damon and Seth also discuss the project&#8217;s development, encouraging more contributions and feedback from the community.</p>\n\n\n\n<p>If you&#8217;re intrigued by improving your WordPress site’s interactivity and performance, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.pewresearch.org\">Pew Research Center</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/\">Interactivity API Handbook</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org\">WordPress Developer Resources</a></p>\n\n\n\n<p><a href=\"https://frontity.org\">Frontity</a></p>\n\n\n\n<p><a href=\"https://github.com/pewresearch\">Pew Research Center on GitHub</a></p>\n\n\n\n<p><a href=\"https://x.com/dcook/\">Damon&#8217;s X</a></p>\n\n\n\n<p><a href=\"https://x.com/dcook/\">Seth&#8217;s X</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, 06 Nov 2024 15: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: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: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:117:\"Do The Woo Community: The Future of Distributed Social Media on WordPress with Robert Windisch and Matthias Pfefferle\";s:7:\"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:28:\"https://dothewoo.io/?p=86671\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://dothewoo.io/the-future-of-distributed-social-media-on-wordpress-with-robert-windisch-and-matthias-pfefferle/\";s: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:178:\"In this episode, Abha discusses WordPress\'s potential evolution into a distributed social media platform with Matthias and Robert, emphasizing community engagement and new 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2024 10:23:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";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:93:\"WPTavern: WordCamp Asia and WordCamp Europe Added to Kim Parsell Memorial Scholarship Program\";s:7:\"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=178985\";s:7:\"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:104:\"https://wptavern.com/wordcamp-asia-and-wordcamp-europe-added-to-kim-parsell-memorial-scholarship-program\";s: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:2901:\"<p>As announced at the <a href=\"https://wordpressfoundation.org/news/2024/meeting-minutes/\">2024 WordPress Foundation Meeting</a>, the  <a href=\"https://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship</a> has been expanded to include WordCamp Europe and WordCamp Asia. Traditionally supporting a woman WordPress contributor to attend WordCamp US, the scholarship now assists women facing financial challenges in attending these three flagship WordCamp events.</p>\n\n\n\n<p>The scholarship honors <a href=\"https://wordpress.org/news/2019/11/people-of-wordpress-kim-parsell/\">Kim Parsell</a>, a cherished member of the WordPress community and regarded as one of the first “women of WordPress”. Known fondly as #wpmom, Kim was a dedicated volunteer who devoted countless hours to the WordPress project and was a strong advocate for women entering the tech industry.</p>\n\n\n\n<p>In 2014, Kim received a travel stipend from the WordPress Foundation, allowing her to attend the WordPress Community Summit held alongside WordCamp San Francisco—a transformative experience she cherished.The WordPress Foundation now offers this scholarship in her memory.</p>\n\n\n\n<p>The<a href=\"https://wordpressfoundation.org/news/2024/kim-parsell-memorial-scholarship-expands-to-wordcamp-asia-and-wordcamp-europe/\"> announcement post</a> states: “ This expansion honors Kim’s legacy and her dedication to inclusivity and diversity within the WordPress community, making it possible for more community members to attend these inspiring events.”</p>\n\n\n\n<p>To qualify, applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman</li>\n\n\n\n<li>Actively contribute to the WordPress project</li>\n\n\n\n<li>Have never attended WordCamp Asia or WordCamp Europe before</li>\n\n\n\n<li>Require financial assistance to attend WordCamp Asia or WordCamp Europe 2025</li>\n</ul>\n\n\n\n<p><strong>Applications are open until November 30, 2024, for both <a href=\"https://wordcampcentral.survey.fm/wcasia-2025-kim-parsell-scholarship-application\">WordCamp Asia</a> and <a href=\"https://wordcampcentral.survey.fm/wceu-2025-kim-parsell-scholarship-application\">WordCamp Europe</a>, with notifications sent by December 21, 2024. </strong> Applications for WordCamp US will open in the coming months. The scholarship covers travel to the host city, hotel accommodation for the event duration, and a WordCamp ticket. It does not include airport transfers, meals, or other incidental expenses.</p>\n\n\n\n<p>The scholarship’s inaugural recipient in 2015 was <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, a Brazilian designer, feminist, and WordPress community activist. Last year, it was awarded to <a href=\"https://profiles.wordpress.org/cnormandigital/\">Cynthia Norman</a>, a WordPress developer and Web designer, with a background in training and education.</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 Nov 2024 04:48:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jyolsna\";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:14:\"Matt: I Voted!\";s:7:\"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:23:\"https://ma.tt/?p=129655\";s:7:\"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:30:\"https://ma.tt/2024/11/i-voted/\";s: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:485:\"<p>It was a huge pain in the butt, because my mail-in ballot didn&#8217;t register properly, but I found a last-minute flight to Houston and this morning walked over to <a href=\"https://www.emanuelhouston.org/\">Congregation Emanu El</a> and voted. It is our most sacred duty as a citizen. I encourage every American to vote.</p>\n\n\n\n<img width=\"604\" height=\"483\" src=\"https://i0.wp.com/ma.tt/files/2024/11/IMG_9886-1024x819.jpeg?resize=604%2C483&ssl=1\" alt=\"\" class=\"wp-image-129656\" />\";s: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 Nov 2024 23:04: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:53:\"WordPress.org blog: WordPress 6.7 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=18056\";s:7:\"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/2024/11/wordpress-6-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8986:\"<p>The third release candidate (RC3) for WordPress 6.7 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.7 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.7 RC3 in four ways:</p>\n\n\n\n<table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.7-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.7-RC3</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\">6.7 RC3 WordPress Playground instance</a> (available within 35 minutes after the release is ready) to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table>You can test the RC3 version in four ways.\n\n\n\n<p>The current target for the WordPress 6.7 release is <strong>November 12, 2024</strong>. Get an overview of the <a href=\"https://make.wordpress.org/core/6-7/\">6.7 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-7/\">6.7-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s in WordPress 6.7 RC3?</h2>\n\n\n\n<p>Get a recap of WordPress 6.7’s highlighted features in the <a href=\"https://wordpress.org/news/2024/10/wordpress-6-7-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC2, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.7?since=2024-10-29&until=2024-11-05\">GitHub commits for 6.7</a> since October 29</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F29%2F2024..11%2F05%2F2024&milestone=6.7&col=id&col=summary&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since October 29</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to ensuring WordPress is performant and stable. It’s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2024/10/01/help-test-wordpress-6-7/\">This detailed guide</a> will walk you through testing features in WordPress 6.7. For those new to testing, follow <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>From now until the final release of WordPress 6.7 (scheduled for November 12, 2024), the <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.&nbsp;</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.7 beta releases. With RC3, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.7.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? <span lang=\"es\">¿Español?</span> <span lang=\"fr\">Français?</span> <span lang=\"ru\">Русский?</span> <span lang=\"ja\">日本?</span> <span lang=\"hi\">हिन्दी?</span> <span lang=\"bn\">বাংলা?</span> You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p><em>RC3 arrives,<br />Final polish, last bugs fall,<br />Six point seven calls.</em></p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post:</em> <em><a href=\"https://profiles.wordpress.org/peterwilsoncc/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>peterwilsoncc</a>, <a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a></em>, <a href=\"https://profiles.wordpress.org/sabernhardt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sabernhardt</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, 05 Nov 2024 17:02:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";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:84:\"Do The Woo Community: Do the Woo WooSesh Recap, Day 2, with Robbie, Marcus and Brian\";s:7:\"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:28:\"https://dothewoo.io/?p=86634\";s:7:\"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://dothewoo.io/do-the-woo-woosesh-recap-day-2-with-robbie-marcus-and-brian/\";s: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:228:\"The episode covers insights from WooSesh on motion design, e-commerce localization, accessibility, payment security, customer success, and lifetime licenses in plugin development, emphasizing enhancing user experience and trust.\";s: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 Nov 2024 10:20: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:5:\"BobWP\";s:7:\"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:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 27 Nov 2024 14:30:25 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 27 Nov 2024 14:15:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";i:1727736619;s:21:\"cache_expiration_time\";i:1732761025;s:23:\"__cache_expiration_time\";i:1732761025;}','off'),
(1145,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1732761025','off'),
(1146,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/11/wordpress-6-7-1-maintenance-release/\'>WordPress 6.7.1 Maintenance Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/11/rollins/\'>WordPress 6.7 “Rollins”</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/wp-campus-connect-with-pooja-derashri-and-anand-upadhyay/\'>Do The Woo Community: WP Campus Connect with Pooja Derashri and Anand Upadhyay</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/blog/host-marcus-burnette-shifts-focus-to-agency-strategy-at-bluehost/\'>Do The Woo Community: Host Marcus Burnette Shifts Focus to Agency Strategy at Bluehost</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-asia-2025-announces-two-scholarships-for-attendees\'>WPTavern: WordCamp Asia 2025 Announces Two Scholarships for Attendees</a></li></ul></div>','off'),
(1147,'_site_transient_timeout_wp_remote_block_patterns_85af6059a330bd91042ca9e9b0b885aa','1732721449','off');
INSERT INTO `wp_options` VALUES
(1148,'_site_transient_wp_remote_block_patterns_85af6059a330bd91042ca9e9b0b885aa','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:514958;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Intro area with heading and image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1685:\"\n<div class=\"wp-block-group alignfull is-content-justification-center is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0\">\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-content-justification-left is-layout-constrained wp-container-core-column-is-layout-1 wp-block-column-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:40%\">\n<p>Exploring life&#8217;s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n</div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:4:\"hero\";s:16:\"wpop_description\";s:93:\"Two columns of text, left with a heading and right with a paragraph, with a wide image below.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.5\";s:25:\"wpop_contains_block_types\";s:111:\"core/button,core/buttons,core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"about\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2422:\"<!-- wp:group {\"metadata\":{\"name\":\"Intro\"},\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"alignfull\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"metadata\":{\"name\":\"Contents\"},\"align\":\"wide\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"\",\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"450px\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Uncover a realm of opportunities.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"40%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"flex-basis:40%\"><!-- wp:paragraph -->\n<p>Exploring life\'s complex tapestry, options reveal routes to the exceptional, requiring innovation, inquisitiveness, and bravery for a deeply satisfying voyage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"aspectRatio\":\"16/9\",\"scale\":\"cover\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2023/07/44364b18862589f06.53436652.jpg\" alt=\"\" style=\"aspect-ratio:16/9;object-fit:cover\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"var:preset|spacing|20\"} -->\n<div style=\"height:var(--wp--preset--spacing--20)\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1335:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-1 is-layout-constrained wp-container-core-group-is-layout-3 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-1\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1089:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-2 is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-4 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1743:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-2\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-5 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2187:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-4 is-layout-flow wp-container-core-group-is-layout-6 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-3\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-5 is-layout-flow wp-container-core-group-is-layout-7 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2031:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-12 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-6 is-layout-flow wp-container-core-group-is-layout-9 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-45f800048fc9de7cd05017eb73b2d5ab\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-7 is-layout-flow wp-container-core-group-is-layout-11 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-10 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-fcaed05d2b63cfab14801929208209cc\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-9052d836cb5172aae9b2f2bc27ee61c0\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span> </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2631:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-core-group-is-layout-16 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-8 is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-13 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-15 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-10 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-9 wp-duotone-rgb000-rgb21788120-3\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-11 wp-duotone-rgb000-rgb21788120-4\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1744:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-5\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-core-group-is-layout-17 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1652:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-18 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1449:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-19 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2104:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-core-group-is-layout-21 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-13\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-14 is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-20 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1626:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-7\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-22 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--6\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1634:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-9\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-23 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-core-buttons-is-layout-7 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline is-style-outline--8\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:955:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-24 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:498:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:637:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4796:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-30 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-8500967d37da86b97bb53ecc0a52ca72 wp-block-site-title has-text-color has-white-color has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-1 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-10\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-10-content\">\n								<ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3947:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-602186720dd7d9bef283ca8cacce4883 is-layout-constrained wp-container-core-group-is-layout-35 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-34 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-141496dd038caa4dcf40174bef55cbbe wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-2 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-11\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-11-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1497:\"<!-- wp:group {\"metadata\":{\"categories\":[\"header\",\"wireframe\"],\"patternName\":\"core/simple-header-with-dark-background\",\"name\":\"Simple header with dark background\"},\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3626:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-38 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-37 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-3 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-12\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-12-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4215:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-container-core-group-is-layout-42 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-41 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-40 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-39 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-d6577b4021234b9631cf15d9d1fea330 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-4 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-13\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-13-content\">\n								<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3361:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-43 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-5 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container hidden-by-default \"  id=\"modal-14\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-14-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4768:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-46 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-45 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-44 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-elements-f7ec64f471b5bfcc0be230aa4daa838e wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-6 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-15\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-15-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3749:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-50 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-49 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-core-group-is-layout-48 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-74d9c587c704a765f018836daab4c876 wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-7 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-16\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-16-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-right wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3693:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-52 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-51 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-elements-7b215d308770124d58b518591412dff8 wp-block-site-title has-text-color has-contrast-color has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"is-responsive items-justified-center wp-block-navigation is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-8 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-17\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-17-content\">\n								<ul class=\"wp-block-navigation__container is-responsive items-justified-center wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3469:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-53 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right wp-block-navigation is-content-justification-right is-layout-flex wp-container-core-navigation-is-layout-9 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-18\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-18-content\">\n								<ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right wp-block-navigation has-large-font-size\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4246:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-55 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-54 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3105:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-container-core-group-is-layout-63 wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-60 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-15 is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-56 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"    ><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-19\" >Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-19\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required  style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\"  style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-core-group-is-layout-59 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-58 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-57 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-62 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:882:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-66 wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-65 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3628:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-container-core-group-is-layout-69 wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-68 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left wp-block-navigation is-content-justification-left is-layout-flex wp-container-core-navigation-is-layout-10 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n		 data-wp-interactive=\"core/navigation\" data-wp-context=\'{\"overlayOpenedBy\":{\"click\":false,\"hover\":false,\"focus\":false},\"type\":\"overlay\",\"roleAttribute\":\"\",\"ariaLabel\":\"Menu\"}\'><button aria-haspopup=\"dialog\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" \n				data-wp-on-async--click=\"actions.openMenuOnClick\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n			><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n				<div class=\"wp-block-navigation__responsive-container  \"  id=\"modal-20\" \n				data-wp-class--has-modal-open=\"state.isMenuOpen\"\n				data-wp-class--is-menu-open=\"state.isMenuOpen\"\n				data-wp-watch=\"callbacks.initMenu\"\n				data-wp-on--keydown=\"actions.handleMenuKeydown\"\n				data-wp-on-async--focusout=\"actions.handleMenuFocusout\"\n				tabindex=\"-1\"\n			>\n					<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\">\n						<div class=\"wp-block-navigation__responsive-dialog\" \n				data-wp-bind--aria-modal=\"state.ariaModal\"\n				data-wp-bind--aria-label=\"state.ariaLabel\"\n				data-wp-bind--role=\"state.roleAttribute\"\n			>\n							<button aria-label=\"Close menu\" class=\"wp-block-navigation__responsive-container-close\" \n				data-wp-on-async--click=\"actions.closeMenuOnClick\"\n			><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z\"></path></svg></button>\n							<div class=\"wp-block-navigation__responsive-container-content\" \n				data-wp-watch=\"callbacks.focusFirstElement\"\n			 id=\"modal-20-content\">\n								<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n							</div>\n						</div>\n					</div>\n				</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3025:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-core-group-is-layout-72 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation is-content-justification-center is-nowrap is-layout-flex wp-container-core-navigation-is-layout-11 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-70 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-core-group-is-layout-71 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4166:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-73 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-core-social-links-is-layout-2 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4645:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-75 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-16\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-17 is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-74 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-18 is-content-justification-right is-nowrap is-layout-flex wp-container-core-social-links-is-layout-3 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2920:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-core-group-is-layout-82 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-19 is-vertical is-layout-flex wp-container-core-group-is-layout-77 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-core-group-is-layout-81 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-78 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation is-content-justification-left is-nowrap is-layout-flex wp-container-core-navigation-is-layout-12 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-80 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-79 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1351:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3578:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-83 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-84 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2282:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-6 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1484:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:611:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1589:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-8 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline is-style-outline--21\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1381:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1540:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-10 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:571:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-22 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','off'),
(1149,'_site_transient_timeout_wp_remote_block_patterns_5885320ebf198b1e7efa7c4fef986031','1732721449','off'),
(1150,'_site_transient_wp_remote_block_patterns_5885320ebf198b1e7efa7c4fef986031','a:13:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6666:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Patterns</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:984:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"buttons\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3849:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size wp-block-list\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2293:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1750:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">→</span></a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1919:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px;aspect-ratio:unset;aspect-ratio:unset;\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img loading=\"lazy\" decoding=\"async\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"auto, (max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"images\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3018:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-core-columns-is-layout-4 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-2 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-7 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-1\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"auto, (max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-6 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-3 is-vertical is-layout-flex wp-container-core-group-is-layout-9 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-8 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img loading=\"lazy\" decoding=\"async\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"auto, (max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1715:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-6 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1712:\"\n<figure class=\"wp-block-image alignwide size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-core-columns-is-layout-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:14:\"call-to-action\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3578:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-10 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-11 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-8 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:4:{i:0;s:7:\"columns\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";i:3;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:611:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study <span aria-hidden=\"true\" class=\"wp-exclude-emoji\">↗</span></a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1382:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px;aspect-ratio:unset;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-10 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":8:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";s:9:\"footnotes\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','off'),
(1168,'_site_transient_timeout_cs_remote_asset_data_e72ba15663603a1bbac4629f744911ff_manifest','1732725727','off'),
(1169,'_site_transient_cs_remote_asset_data_e72ba15663603a1bbac4629f744911ff_manifest','a:2:{s:9:\"templates\";a:3:{s:5:\"sites\";a:1:{i:0;a:6:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:12:\"Starter Site\";s:4:\"type\";s:4:\"site\";s:7:\"preview\";s:78:\"https://templates.theme.co/wp-content/uploads/sites/9/2022/09/starter-home.jpg\";s:4:\"gate\";s:3:\"pro\";s:8:\"isRemote\";b:1;}}s:9:\"documents\";a:118:{i:0;a:6:{s:2:\"id\";s:6:\"1-1359\";s:5:\"title\";s:13:\"Minimal Light\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2024/09/minimal-light.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:1;a:6:{s:2:\"id\";s:6:\"1-1357\";s:5:\"title\";s:12:\"Minimal Dark\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2024/09/minimal-dark.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:2;a:6:{s:2:\"id\";s:6:\"1-1355\";s:5:\"title\";s:10:\"Flat Light\";s:7:\"preview\";s:68:\"https://templates.theme.co/wp-content/uploads/2024/09/flat-light.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:3;a:6:{s:2:\"id\";s:6:\"1-1353\";s:5:\"title\";s:9:\"Flat Dark\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2024/09/flat-dark.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:4;a:6:{s:2:\"id\";s:6:\"1-1351\";s:5:\"title\";s:13:\"Classic Light\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2024/09/classic-light.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:5;a:6:{s:2:\"id\";s:6:\"1-1349\";s:5:\"title\";s:12:\"Classic Dark\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2024/09/classic-dark.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:6;a:6:{s:2:\"id\";s:6:\"1-1347\";s:5:\"title\";s:18:\"Overlap Landmark 3\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/overlap-landmark-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:7;a:6:{s:2:\"id\";s:6:\"1-1345\";s:5:\"title\";s:18:\"Overlap Landmark 2\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/overlap-landmark-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:8;a:6:{s:2:\"id\";s:6:\"1-1343\";s:5:\"title\";s:18:\"Overlap Landmark 1\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/overlap-landmark-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:9;a:6:{s:2:\"id\";s:6:\"1-1341\";s:5:\"title\";s:18:\"Minimal Landmark 3\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/minimal-landmark-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:10;a:6:{s:2:\"id\";s:6:\"1-1339\";s:5:\"title\";s:18:\"Minimal Landmark 2\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/minimal-landmark-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:11;a:6:{s:2:\"id\";s:6:\"1-1337\";s:5:\"title\";s:18:\"Minimal Landmark 1\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/2024/09/minimal-landmark-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:12;a:6:{s:2:\"id\";s:6:\"1-1335\";s:5:\"title\";s:17:\"Inline Headline 3\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2024/09/inline-headline-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:13;a:6:{s:2:\"id\";s:6:\"1-1333\";s:5:\"title\";s:17:\"Inline Headline 2\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2024/09/inline-headline-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:14;a:6:{s:2:\"id\";s:6:\"1-1331\";s:5:\"title\";s:17:\"Inline Headline 1\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2024/09/inline-headline-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:15;a:6:{s:2:\"id\";s:6:\"1-1329\";s:5:\"title\";s:15:\"Hero Landmark 3\";s:7:\"preview\";s:73:\"https://templates.theme.co/wp-content/uploads/2024/09/hero-landmark-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:16;a:6:{s:2:\"id\";s:6:\"1-1327\";s:5:\"title\";s:15:\"Hero Landmark 2\";s:7:\"preview\";s:73:\"https://templates.theme.co/wp-content/uploads/2024/09/hero-landmark-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:17;a:6:{s:2:\"id\";s:6:\"1-1325\";s:5:\"title\";s:15:\"Hero Landmark 1\";s:7:\"preview\";s:73:\"https://templates.theme.co/wp-content/uploads/2024/09/hero-landmark-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:18;a:6:{s:2:\"id\";s:6:\"1-1323\";s:5:\"title\";s:16:\"Boxed Landmark 3\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-landmark-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:19;a:6:{s:2:\"id\";s:6:\"1-1321\";s:5:\"title\";s:16:\"Boxed Landmark 2\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-landmark-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:20;a:6:{s:2:\"id\";s:6:\"1-1319\";s:5:\"title\";s:16:\"Boxed Landmark 1\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-landmark-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:21;a:6:{s:2:\"id\";s:6:\"1-1317\";s:5:\"title\";s:23:\"Boxed Inline Headline 3\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-inline-headline-3.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:22;a:6:{s:2:\"id\";s:6:\"1-1315\";s:5:\"title\";s:23:\"Boxed Inline Headline 2\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-inline-headline-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:23;a:6:{s:2:\"id\";s:6:\"1-1313\";s:5:\"title\";s:23:\"Boxed Inline Headline 1\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/2024/09/boxed-inline-headline-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:24;a:6:{s:2:\"id\";s:6:\"1-1311\";s:5:\"title\";s:7:\"Split 2\";s:7:\"preview\";s:65:\"https://templates.theme.co/wp-content/uploads/2024/09/split-2.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:25;a:6:{s:2:\"id\";s:6:\"1-1309\";s:5:\"title\";s:7:\"Split 1\";s:7:\"preview\";s:65:\"https://templates.theme.co/wp-content/uploads/2024/09/split-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:26;a:6:{s:2:\"id\";s:6:\"1-1227\";s:5:\"title\";s:9:\"Header 05\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-header-05.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:27;a:6:{s:2:\"id\";s:6:\"1-1226\";s:5:\"title\";s:9:\"Header 04\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-header-04.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:28;a:6:{s:2:\"id\";s:6:\"1-1225\";s:5:\"title\";s:9:\"Header 03\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-header-03.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:29;a:6:{s:2:\"id\";s:6:\"1-1224\";s:5:\"title\";s:9:\"Header 02\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-header-02.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:30;a:6:{s:2:\"id\";s:6:\"1-1218\";s:5:\"title\";s:9:\"Header 01\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-header-01.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:31;a:6:{s:2:\"id\";s:6:\"1-1217\";s:5:\"title\";s:9:\"Footer 02\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-footer-02.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:32;a:6:{s:2:\"id\";s:6:\"1-1214\";s:5:\"title\";s:9:\"Footer 01\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/2022/08/st-footer-01.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:33;a:6:{s:2:\"id\";s:5:\"1-923\";s:5:\"title\";s:6:\"Blog 3\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-blog-3.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:34;a:6:{s:2:\"id\";s:5:\"1-922\";s:5:\"title\";s:6:\"Post 3\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-post-3.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:35;a:6:{s:2:\"id\";s:5:\"1-921\";s:5:\"title\";s:6:\"Post 2\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-post-2.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:36;a:6:{s:2:\"id\";s:5:\"1-911\";s:5:\"title\";s:6:\"Blog 2\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-blog-2.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:37;a:6:{s:2:\"id\";s:5:\"1-794\";s:5:\"title\";s:6:\"Post 1\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-post-1.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:38;a:6:{s:2:\"id\";s:5:\"1-793\";s:5:\"title\";s:6:\"Blog 1\";s:7:\"preview\";s:67:\"https://templates.theme.co/wp-content/uploads/2022/08/st-blog-1.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:39;a:6:{s:2:\"id\";s:4:\"9-10\";s:5:\"title\";s:4:\"Home\";s:7:\"preview\";s:0:\"\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:40;a:6:{s:2:\"id\";s:6:\"12-301\";s:5:\"title\";s:13:\"Webinar Optin\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/webinar-optin.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:41;a:7:{s:2:\"id\";s:6:\"12-126\";s:5:\"title\";s:15:\"Themeco Records\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/themeco-records.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:42;a:7:{s:2:\"id\";s:6:\"12-155\";s:5:\"title\";s:8:\"The Word\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/the-word.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:43;a:6:{s:2:\"id\";s:6:\"12-159\";s:5:\"title\";s:19:\"The Final Countdown\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/the-final-countdown.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:44;a:7:{s:2:\"id\";s:6:\"12-114\";s:5:\"title\";s:13:\"Tell It Slant\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/tell-it-slant.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:45;a:6:{s:2:\"id\";s:6:\"12-262\";s:5:\"title\";s:11:\"Team of Two\";s:7:\"preview\";s:79:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/team-of-two.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:46;a:6:{s:2:\"id\";s:6:\"12-322\";s:5:\"title\";s:11:\"Studio Gold\";s:7:\"preview\";s:79:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/studio-gold.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:47;a:7:{s:2:\"id\";s:6:\"12-131\";s:5:\"title\";s:18:\"New Player Loading\";s:7:\"preview\";s:86:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/new-player-loading.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:48;a:7:{s:2:\"id\";s:6:\"12-174\";s:5:\"title\";s:12:\"Quick Access\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/quick-access-1.png\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:49;a:6:{s:2:\"id\";s:6:\"12-268\";s:5:\"title\";s:19:\"Neon Call to Action\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/neon-call-to-action.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:50;a:6:{s:2:\"id\";s:6:\"12-304\";s:5:\"title\";s:23:\"Motivational Hero Video\";s:7:\"preview\";s:91:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/motivational-hero-video.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:51;a:7:{s:2:\"id\";s:6:\"12-100\";s:5:\"title\";s:19:\"Moderne Architektur\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/moderne-architektur.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:52;a:7:{s:2:\"id\";s:6:\"12-258\";s:5:\"title\";s:13:\"Modern Mosaic\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/modern-mosaic.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:53;a:7:{s:2:\"id\";s:6:\"12-251\";s:5:\"title\";s:13:\"Geometry Grid\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/geometry-grid.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:54;a:6:{s:2:\"id\";s:6:\"12-274\";s:5:\"title\";s:22:\"Geometric Testimonials\";s:7:\"preview\";s:92:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/geometric-testimonials-1.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:55;a:6:{s:2:\"id\";s:6:\"12-280\";s:5:\"title\";s:13:\"Fresh Pricing\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/fresh-pricing.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:56;a:7:{s:2:\"id\";s:6:\"12-150\";s:5:\"title\";s:13:\"Frank\'s Diner\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/franks-diner.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:57;a:6:{s:2:\"id\";s:6:\"12-236\";s:5:\"title\";s:23:\"Product Tables | re:PRO\";s:7:\"preview\";s:88:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/product-tables-repro.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:58;a:7:{s:2:\"id\";s:6:\"12-165\";s:5:\"title\";s:16:\"Provider Palooza\";s:7:\"preview\";s:84:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/provider-palooza.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:59;a:7:{s:2:\"id\";s:5:\"12-96\";s:5:\"title\";s:15:\"Recurring Roles\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/recurring-roles.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:60;a:7:{s:2:\"id\";s:6:\"12-140\";s:5:\"title\";s:13:\"Save the Date\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/save-the-date.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:61;a:6:{s:2:\"id\";s:6:\"12-208\";s:5:\"title\";s:18:\"Section Dividers 1\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/section-dividers-2-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:62;a:6:{s:2:\"id\";s:6:\"12-221\";s:5:\"title\";s:18:\"Section Dividers 2\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/section-dividers-3-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:63;a:7:{s:2:\"id\";s:6:\"12-168\";s:5:\"title\";s:11:\"Split Blend\";s:7:\"preview\";s:79:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/split-blend.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:64;a:6:{s:2:\"id\";s:6:\"12-266\";s:5:\"title\";s:10:\"Split Menu\";s:7:\"preview\";s:78:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/split-menu.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:65;a:7:{s:2:\"id\";s:6:\"12-245\";s:5:\"title\";s:17:\"Overlapping Cells\";s:7:\"preview\";s:85:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/overlapping-cells.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:66;a:6:{s:2:\"id\";s:6:\"12-240\";s:5:\"title\";s:18:\"Creative Columns 5\";s:7:\"preview\";s:85:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-columns-5.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:67;a:6:{s:2:\"id\";s:6:\"12-211\";s:5:\"title\";s:24:\"Creative Contact Forms 1\";s:7:\"preview\";s:91:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-contact-forms-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:68;a:6:{s:2:\"id\";s:6:\"12-214\";s:5:\"title\";s:24:\"Creative Contact Forms 2\";s:7:\"preview\";s:93:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-contact-forms-2-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:69;a:6:{s:2:\"id\";s:6:\"12-189\";s:5:\"title\";s:24:\"Creative Contact Forms 3\";s:7:\"preview\";s:93:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-contact-forms-3-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:70;a:6:{s:2:\"id\";s:6:\"12-186\";s:5:\"title\";s:24:\"Creative Contact Forms 4\";s:7:\"preview\";s:93:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-contact-forms-4-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:71;a:7:{s:2:\"id\";s:5:\"12-88\";s:5:\"title\";s:15:\"Easel and Brush\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/easel-and-brush.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:72;a:6:{s:2:\"id\";s:6:\"12-163\";s:5:\"title\";s:21:\"Effect Deconstruction\";s:7:\"preview\";s:89:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/effect-deconstruction.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:73;a:6:{s:2:\"id\";s:5:\"12-98\";s:5:\"title\";s:15:\"Estudio Naranja\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/estudio-naranja.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:74;a:6:{s:2:\"id\";s:5:\"12-92\";s:5:\"title\";s:12:\"Faux Tableau\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/faux-tableau.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:75;a:7:{s:2:\"id\";s:5:\"12-90\";s:5:\"title\";s:14:\"Fit and Finish\";s:7:\"preview\";s:82:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/fit-and-finish.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:76;a:6:{s:2:\"id\";s:6:\"12-178\";s:5:\"title\";s:11:\"Focus Areas\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/focus-areas-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:77;a:7:{s:2:\"id\";s:6:\"12-137\";s:5:\"title\";s:10:\"Fotografia\";s:7:\"preview\";s:78:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/fotografia.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:78;a:6:{s:2:\"id\";s:6:\"12-231\";s:5:\"title\";s:18:\"Creative Columns 4\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-columns-4-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:79;a:6:{s:2:\"id\";s:6:\"12-224\";s:5:\"title\";s:18:\"Creative Columns 3\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-columns-3-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:80;a:6:{s:2:\"id\";s:6:\"12-202\";s:5:\"title\";s:18:\"Creative Columns 2\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-columns-2-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:81;a:6:{s:2:\"id\";s:6:\"12-195\";s:5:\"title\";s:18:\"Creative Columns 1\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/creative-columns-1-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:82;a:7:{s:2:\"id\";s:6:\"12-119\";s:5:\"title\";s:16:\"Caffeine Collage\";s:7:\"preview\";s:84:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/caffeine-collage.jpeg\";s:4:\"gate\";s:3:\"pro\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:83;a:6:{s:2:\"id\";s:6:\"12-161\";s:5:\"title\";s:20:\"Better Badder Bigger\";s:7:\"preview\";s:98:\"https://templates.theme.co/wp-content/uploads/sites/12/2023/10/harder-better-faster-stronger-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:84;a:6:{s:2:\"id\";s:6:\"12-182\";s:5:\"title\";s:18:\"Batteries Included\";s:7:\"preview\";s:86:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/batteries-included.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:85;a:6:{s:2:\"id\";s:6:\"12-297\";s:5:\"title\";s:22:\"Architecture Portfolio\";s:7:\"preview\";s:90:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/architecture-portfolio.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:12:\"content:page\";s:8:\"isRemote\";b:1;}i:86;a:7:{s:2:\"id\";s:5:\"12-87\";s:5:\"title\";s:27:\"Postmodern Pixels (Archive)\";s:7:\"preview\";s:92:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/postmodern-pixels-archive.jpg\";s:5:\"group\";s:4:\"blog\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:14:\"layout:archive\";s:8:\"isRemote\";b:1;}i:87;a:7:{s:2:\"id\";s:5:\"12-86\";s:5:\"title\";s:26:\"Postmodern Pixels (Single)\";s:7:\"preview\";s:91:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/postmodern-pixels-single.jpg\";s:5:\"group\";s:4:\"blog\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:single\";s:8:\"isRemote\";b:1;}i:88;a:6:{s:2:\"id\";s:5:\"12-85\";s:5:\"title\";s:9:\"Chronicle\";s:7:\"preview\";s:77:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/chronicle.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:89;a:6:{s:2:\"id\";s:5:\"12-84\";s:5:\"title\";s:11:\"Get Started\";s:7:\"preview\";s:79:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/get-started.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:90;a:6:{s:2:\"id\";s:5:\"12-82\";s:5:\"title\";s:4:\"Mail\";s:7:\"preview\";s:72:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/mail.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:91;a:6:{s:2:\"id\";s:5:\"12-81\";s:5:\"title\";s:6:\"Pronto\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/pronto.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:92;a:6:{s:2:\"id\";s:5:\"12-79\";s:5:\"title\";s:9:\"Ravenwood\";s:7:\"preview\";s:77:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/ravenwood.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:93;a:6:{s:2:\"id\";s:5:\"12-77\";s:5:\"title\";s:14:\"Minimal Studio\";s:7:\"preview\";s:82:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/minimal-studio.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:94;a:6:{s:2:\"id\";s:5:\"12-75\";s:5:\"title\";s:12:\"Center Point\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/center-point-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:95;a:6:{s:2:\"id\";s:5:\"12-72\";s:5:\"title\";s:13:\"Goodwood Park\";s:7:\"preview\";s:82:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/goodwood-park-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:96;a:6:{s:2:\"id\";s:5:\"12-68\";s:5:\"title\";s:23:\"Gradient Call to Action\";s:7:\"preview\";s:92:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/gradient-call-to-action-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:97;a:6:{s:2:\"id\";s:5:\"12-66\";s:5:\"title\";s:11:\"In The Blue\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/in-the-blue-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:98;a:6:{s:2:\"id\";s:5:\"12-64\";s:5:\"title\";s:12:\"Flex Columns\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/flex-columns.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:99;a:6:{s:2:\"id\";s:5:\"12-63\";s:5:\"title\";s:15:\"High Visibility\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/high-visibility.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:footer\";s:8:\"isRemote\";b:1;}i:100;a:6:{s:2:\"id\";s:5:\"12-59\";s:5:\"title\";s:8:\"Bridgers\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/bridgers.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:101;a:6:{s:2:\"id\";s:5:\"12-56\";s:5:\"title\";s:6:\"El Rey\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/el-rey.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:102;a:6:{s:2:\"id\";s:5:\"12-53\";s:5:\"title\";s:19:\"Fields of Fortitude\";s:7:\"preview\";s:87:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/fields-of-fortitude.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:103;a:6:{s:2:\"id\";s:5:\"12-49\";s:5:\"title\";s:16:\"Like You Mean It\";s:7:\"preview\";s:84:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/like-you-mean-it.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:104;a:6:{s:2:\"id\";s:5:\"12-47\";s:5:\"title\";s:8:\"Option 3\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/option-3.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:105;a:6:{s:2:\"id\";s:5:\"12-43\";s:5:\"title\";s:14:\"Osborne Optics\";s:7:\"preview\";s:82:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/osborne-optics.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:106;a:6:{s:2:\"id\";s:5:\"12-40\";s:5:\"title\";s:2:\"23\";s:7:\"preview\";s:70:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/23.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:107;a:6:{s:2:\"id\";s:5:\"12-37\";s:5:\"title\";s:13:\"Adventure Ten\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/adventure-ten.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:108;a:6:{s:2:\"id\";s:5:\"12-34\";s:5:\"title\";s:17:\"Kesclin McKleskin\";s:7:\"preview\";s:85:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/kesclin-mckesclin.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:109;a:6:{s:2:\"id\";s:5:\"12-30\";s:5:\"title\";s:5:\"Split\";s:7:\"preview\";s:73:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/split.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:110;a:6:{s:2:\"id\";s:5:\"12-25\";s:5:\"title\";s:15:\"Tophat Security\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/tophat-security.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:111;a:6:{s:2:\"id\";s:5:\"12-22\";s:5:\"title\";s:13:\"Learn to Sass\";s:7:\"preview\";s:81:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/learn-to-sass.jpeg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:112;a:6:{s:2:\"id\";s:5:\"12-19\";s:5:\"title\";s:16:\"Business Success\";s:7:\"preview\";s:85:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/business-success-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:113;a:6:{s:2:\"id\";s:5:\"12-14\";s:5:\"title\";s:19:\"Easy Mobile Banking\";s:7:\"preview\";s:88:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/easy-mobile-banking-1.png\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:114;a:6:{s:2:\"id\";s:4:\"12-9\";s:5:\"title\";s:9:\"Love Hero\";s:7:\"preview\";s:76:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/love-hero.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:115;a:6:{s:2:\"id\";s:4:\"12-8\";s:5:\"title\";s:16:\"Rhythm in Motion\";s:7:\"preview\";s:83:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/rhythm-in-motion.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:116;a:6:{s:2:\"id\";s:4:\"12-7\";s:5:\"title\";s:10:\"Wanderlust\";s:7:\"preview\";s:77:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/wanderlust.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}i:117;a:6:{s:2:\"id\";s:4:\"12-6\";s:5:\"title\";s:11:\"Fashionista\";s:7:\"preview\";s:78:\"https://templates.theme.co/wp-content/uploads/sites/12/2022/09/fashionista.jpg\";s:4:\"type\";s:8:\"document\";s:7:\"subType\";s:13:\"layout:header\";s:8:\"isRemote\";b:1;}}s:8:\"sections\";a:47:{i:0;a:6:{s:2:\"id\";s:6:\"1-1302\";s:5:\"title\";s:27:\"Slider Thumbnail Gallery 01\";s:7:\"preview\";s:94:\"https://templates.theme.co/wp-content/uploads/2024/07/slider-thumbnail-gallery-thumb-small.png\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:1;a:6:{s:2:\"id\";s:6:\"1-1300\";s:5:\"title\";s:25:\"Image Gallery Lightbox 01\";s:7:\"preview\";s:92:\"https://templates.theme.co/wp-content/uploads/2024/07/image-gallery-lightbox-thumb-small.png\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:2;a:6:{s:2:\"id\";s:6:\"1-1213\";s:5:\"title\";s:15:\"Left / Right 06\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-06.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:3;a:6:{s:2:\"id\";s:6:\"1-1212\";s:5:\"title\";s:15:\"Left / Right 05\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-05.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:4;a:6:{s:2:\"id\";s:6:\"1-1211\";s:5:\"title\";s:15:\"Left / Right 04\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:5;a:6:{s:2:\"id\";s:6:\"1-1210\";s:5:\"title\";s:15:\"Left / Right 03\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:6;a:6:{s:2:\"id\";s:6:\"1-1209\";s:5:\"title\";s:15:\"Left / Right 02\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-02.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:7;a:6:{s:2:\"id\";s:6:\"1-1202\";s:5:\"title\";s:15:\"Left / Right 01\";s:7:\"preview\";s:74:\"https://templates.theme.co/wp-content/uploads/2022/08/st-left-right-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:8;a:6:{s:2:\"id\";s:6:\"1-1257\";s:5:\"title\";s:10:\"Utility 05\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-utility-05.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:9;a:6:{s:2:\"id\";s:6:\"1-1256\";s:5:\"title\";s:10:\"Utility 04\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-utility-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:10;a:6:{s:2:\"id\";s:6:\"1-1255\";s:5:\"title\";s:10:\"Utility 03\";s:7:\"preview\";s:77:\"https://templates.theme.co/wp-content/uploads/2022/08/st-utility-03-fixed.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:11;a:6:{s:2:\"id\";s:6:\"1-1254\";s:5:\"title\";s:10:\"Utility 02\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-utility-02-adaptive.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:12;a:6:{s:2:\"id\";s:6:\"1-1248\";s:5:\"title\";s:10:\"Utility 01\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-utility-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:13;a:6:{s:2:\"id\";s:6:\"1-1247\";s:5:\"title\";s:14:\"Testimonial 04\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-testimonial-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:14;a:6:{s:2:\"id\";s:6:\"1-1246\";s:5:\"title\";s:14:\"Testimonial 03\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-testimonial-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:15;a:6:{s:2:\"id\";s:6:\"1-1245\";s:5:\"title\";s:14:\"Testimonial 02\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-testimonial-02.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:16;a:6:{s:2:\"id\";s:6:\"1-1240\";s:5:\"title\";s:14:\"Testimonial 01\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-testimonial-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:17;a:6:{s:2:\"id\";s:6:\"1-1228\";s:5:\"title\";s:10:\"Pricing 01\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:18;a:6:{s:2:\"id\";s:6:\"1-1239\";s:5:\"title\";s:10:\"Pricing 06\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-06.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:19;a:6:{s:2:\"id\";s:6:\"1-1238\";s:5:\"title\";s:10:\"Pricing 05\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-05.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:20;a:6:{s:2:\"id\";s:6:\"1-1237\";s:5:\"title\";s:10:\"Pricing 04\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:21;a:6:{s:2:\"id\";s:6:\"1-1236\";s:5:\"title\";s:10:\"Pricing 03\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:22;a:6:{s:2:\"id\";s:6:\"1-1235\";s:5:\"title\";s:10:\"Pricing 02\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-pricing-02.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:23;a:6:{s:2:\"id\";s:6:\"1-1201\";s:5:\"title\";s:11:\"Centered 11\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-11.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:24;a:6:{s:2:\"id\";s:6:\"1-1200\";s:5:\"title\";s:11:\"Centered 10\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-10.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:25;a:6:{s:2:\"id\";s:6:\"1-1199\";s:5:\"title\";s:11:\"Centered 09\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-09.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:26;a:6:{s:2:\"id\";s:6:\"1-1198\";s:5:\"title\";s:11:\"Centered 08\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-08.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:27;a:6:{s:2:\"id\";s:6:\"1-1197\";s:5:\"title\";s:11:\"Centered 07\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-07.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:28;a:6:{s:2:\"id\";s:6:\"1-1196\";s:5:\"title\";s:11:\"Centered 06\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-06.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:29;a:6:{s:2:\"id\";s:6:\"1-1195\";s:5:\"title\";s:11:\"Centered 05\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-05.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:30;a:6:{s:2:\"id\";s:6:\"1-1194\";s:5:\"title\";s:11:\"Centered 04\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:31;a:6:{s:2:\"id\";s:6:\"1-1193\";s:5:\"title\";s:11:\"Centered 03\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:32;a:6:{s:2:\"id\";s:6:\"1-1192\";s:5:\"title\";s:11:\"Centered 02\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-02.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:33;a:6:{s:2:\"id\";s:6:\"1-1180\";s:5:\"title\";s:11:\"Centered 01\";s:7:\"preview\";s:80:\"https://templates.theme.co/wp-content/uploads/2022/08/st-content-centered-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:34;a:6:{s:2:\"id\";s:6:\"1-1179\";s:5:\"title\";s:10:\"Columns 11\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-11.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:35;a:6:{s:2:\"id\";s:6:\"1-1178\";s:5:\"title\";s:10:\"Columns 10\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-10.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:36;a:6:{s:2:\"id\";s:6:\"1-1177\";s:5:\"title\";s:10:\"Columns 09\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-09.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:37;a:6:{s:2:\"id\";s:6:\"1-1149\";s:5:\"title\";s:15:\"Recent Posts 02\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-recent-posts-2.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:38;a:6:{s:2:\"id\";s:6:\"1-1146\";s:5:\"title\";s:15:\"Recent Posts 01\";s:7:\"preview\";s:75:\"https://templates.theme.co/wp-content/uploads/2022/08/st-recent-posts-1.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:39;a:6:{s:2:\"id\";s:6:\"1-1174\";s:5:\"title\";s:10:\"Columns 07\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:40;a:6:{s:2:\"id\";s:6:\"1-1173\";s:5:\"title\";s:10:\"Columns 06\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-06.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:41;a:6:{s:2:\"id\";s:6:\"1-1172\";s:5:\"title\";s:10:\"Columns 05\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-05.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:42;a:6:{s:2:\"id\";s:6:\"1-1171\";s:5:\"title\";s:10:\"Columns 04\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-04.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:43;a:6:{s:2:\"id\";s:6:\"1-1169\";s:5:\"title\";s:10:\"Columns 02\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-02.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:44;a:6:{s:2:\"id\";s:6:\"1-1170\";s:5:\"title\";s:10:\"Columns 03\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-03.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:45;a:6:{s:2:\"id\";s:6:\"1-1157\";s:5:\"title\";s:10:\"Columns 01\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-01.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}i:46;a:6:{s:2:\"id\";s:6:\"1-1175\";s:5:\"title\";s:10:\"Columns 08\";s:7:\"preview\";s:71:\"https://templates.theme.co/wp-content/uploads/2022/08/st-columns-08.jpg\";s:4:\"type\";s:7:\"element\";s:7:\"subType\";s:9:\"__multi__\";s:8:\"isRemote\";b:1;}}}s:6:\"groups\";a:0:{}}','off'),
(1170,'_site_transient_timeout_theme_roots','1732723940','off'),
(1171,'_site_transient_theme_roots','a:4:{s:3:\"pro\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}','off'),
(1172,'_site_transient_timeout_wp_theme_files_patterns-1a75f6b8b4fd0435854fa8d441ba8d9d','1732730563','off'),
(1173,'_site_transient_wp_theme_files_patterns-1a75f6b8b4fd0435854fa8d441ba8d9d','a:2:{s:7:\"version\";s:6:\"6.5.11\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES
(1,2,'_wp_page_template','template-blank-4.php'),
(2,3,'_wp_page_template','template-blank-4.php'),
(5,2,'_edit_last','2'),
(6,2,'_edit_lock','1732052485:2'),
(7,1,'_wp_trash_meta_status','publish'),
(8,1,'_wp_trash_meta_time','1732052491'),
(9,1,'_wp_desired_post_slug','hello-world'),
(10,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),
(11,3,'_cs_states_cache','Privacy Policy Page'),
(12,2,'_cs_states_cache','Front Page'),
(13,12,'_wp_attached_file','2024/11/el-rey-bg-upper.png'),
(14,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2880;s:6:\"height\";i:2000;s:4:\"file\";s:27:\"2024/11/el-rey-bg-upper.png\";s:8:\"filesize\";i:98876;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"el-rey-bg-upper-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8266;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"el-rey-bg-upper-1024x711.png\";s:5:\"width\";i:1024;s:6:\"height\";i:711;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"el-rey-bg-upper-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4654;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"el-rey-bg-upper-768x533.png\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26918;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"el-rey-bg-upper-1536x1067.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1067;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92737;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"el-rey-bg-upper-2048x1422.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1422;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180242;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"el-rey-bg-upper-100x69.png\";s:5:\"width\";i:100;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1929;}s:5:\"entry\";a:5:{s:4:\"file\";s:28:\"el-rey-bg-upper-1200x833.png\";s:5:\"width\";i:1200;s:6:\"height\";i:833;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53684;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:28:\"el-rey-bg-upper-1200x671.png\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52791;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:28:\"el-rey-bg-upper-1200x833.png\";s:5:\"width\";i:1200;s:6:\"height\";i:833;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53684;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:28:\"el-rey-bg-upper-1200x671.png\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52791;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,12,'_cs_attachment_import','f9d24a6ee0b6d5b8b43049f3c198f473'),
(16,13,'_wp_attached_file','2024/11/van-2.jpg'),
(17,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2024/11/van-2.jpg\";s:8:\"filesize\";i:179408;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"van-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23055;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"van-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"van-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8135;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"van-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103664;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"van-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4901;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:18:\"van-2-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133118;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:18:\"van-2-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133118;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18,13,'_cs_attachment_import','6ea5cdb3f6a6e9a1e3d99b4267355cb8'),
(19,14,'_cs_template_identifier','element|__multi__'),
(20,14,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"LTL Delivery Services\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Efficient Solutions for Your Smaller Shipments\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"At McLeod Expedite, our LTL (Less-Than-Truckload) delivery services provide a cost-effective way to transport smaller shipments. We combine your goods with others, ensuring efficient and timely delivery while keeping costs low. Ideal for businesses with smaller loads.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"13:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>LTL Delivery Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Cost-Effective:</strong> Save money by sharing truck space with other shipments.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Efficient Delivery:</strong> Consolidated shipments for timely arrivals.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Reliable Service:</strong> Perfect for businesses needing to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Nationwide Coverage:</strong> Reliable LTL delivery services across the country.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Flexible Scheduling:</strong> Customize delivery times to fit your specific needs with guaranteed options. to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]}'),
(21,15,'_wp_attached_file','2024/11/Breaking.jpg'),
(22,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2024/11/Breaking.jpg\";s:8:\"filesize\";i:251606;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Breaking-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11075;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Breaking-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Breaking-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7983;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Breaking-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Breaking-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163215;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"Breaking-100x50.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3264;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"Breaking-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110008;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"Breaking-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121719;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"Breaking-1200x600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110008;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"Breaking-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23,15,'_cs_attachment_import','f18c77ad3b646e666cd25ff1be4dbaaf'),
(24,16,'_cs_template_identifier','element|__multi__'),
(25,16,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"#e9e9e9\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Breaking<br />Barriers in Shipping\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"rgb(0, 0, 0)\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]}'),
(26,17,'_wp_attached_file','2024/11/McLeod_Expedite_Logo_Final_forTshirts.png'),
(27,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1221;s:6:\"height\";i:402;s:4:\"file\";s:49:\"2024/11/McLeod_Expedite_Logo_Final_forTshirts.png\";s:8:\"filesize\";i:33876;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"McLeod_Expedite_Logo_Final_forTshirts-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13906;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"McLeod_Expedite_Logo_Final_forTshirts-1024x337.png\";s:5:\"width\";i:1024;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"McLeod_Expedite_Logo_Final_forTshirts-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6575;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"McLeod_Expedite_Logo_Final_forTshirts-768x253.png\";s:5:\"width\";i:768;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37877;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"McLeod_Expedite_Logo_Final_forTshirts-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4085;}s:5:\"entry\";a:5:{s:4:\"file\";s:50:\"McLeod_Expedite_Logo_Final_forTshirts-1200x395.png\";s:5:\"width\";i:1200;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59133;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:50:\"McLeod_Expedite_Logo_Final_forTshirts-1200x402.png\";s:5:\"width\";i:1200;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41243;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:50:\"McLeod_Expedite_Logo_Final_forTshirts-1200x395.png\";s:5:\"width\";i:1200;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59133;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:50:\"McLeod_Expedite_Logo_Final_forTshirts-1200x402.png\";s:5:\"width\";i:1200;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28,17,'_cs_attachment_import','ad25a974fc05d30844a2002df7a5874b'),
(29,18,'_cs_template_identifier','element|__multi__'),
(30,18,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"1rem\",\"bar_bg_color\":\"global-color:tTnOH9HL6UMsltkKQ6\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2em\",\"bar_padding\":\"5rem 0rem 4.5rem 0rem\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_margin\":\"!0px\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"center\",\"container_text_align\":\"center\",\"container_width\":\"100%\",\"container_z_index\":\"1\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_padding\":\"0em 0em 0.25em 0em\",\"anchor_primary_font_family\":\"google:sourcesanspro\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_letter_spacing\":\"0.15em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_align\":\"center\",\"anchor_primary_text_color\":\"#7f7f7f\",\"anchor_primary_text_color_alt\":\"#ffffff\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"#7f7f7f\",\"anchor_sub_indicator_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_sub_indicator_font_size\":\"2em\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"7px\",\"dropdown_bg_color\":\"#ffffff\",\"dropdown_border_radius\":\"!0em\",\"dropdown_border_style\":\"none\",\"dropdown_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"hide_login\":\"\",\"menu\":\"menu:3\",\"menu_row_flex_justify\":\"center\",\"menu_row_flex_wrap\":true,\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_primary_font_weight\":\"400\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_text_align\":\"center\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_text_margin\":\"5px 5 5px 5px\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_margin\":\"4em 0px 0px 0px\",\"image_src\":\"17:full\",\"image_styled_max_width\":\"400px\",\"_modules\":[]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Copyright\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"14px\",\"bar_bg_color\":\"global-color:tTnOH9HL6UMsltkKQ6\",\"bar_border_color\":\"#2f2f2f transparent transparent transparent\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_border_style\":\"solid none none none\",\"bar_border_width\":\"!1px 0px 0px 0px\",\"bar_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"bar_box_shadow_dimensions\":\"!0em 0.15em 2em\",\"bar_content_length\":\"88%\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"30px 0em 0px 0em\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"css\":\"@media (max-width: 727px) {\\n\\t$el.x-bar-content {\\n\\t\\tflex-direction: column;\\n\\t}\\n}\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0px 0px 30px 0px\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"\\u00a9 2024 <a href=\\\"https://www.mcleodexpedite.com/\\\"><span style=\\\"color: #ffffff;\\\">Mcleod Expedite</span></a> Courier & Expidited Delivery Services.\\u00a0All rights reserved worldwide. Marketing and Website by <a href=\\\"https://verobeach.marketing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"color: #ffffff;\\\">Vero Beach Marketing</a>.\",\"text_font_family\":\"google:jost\",\"text_font_size\":\"0.9rem\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.4\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"text_text_transform\":\"uppercase\",\"text_type\":\"standard\",\"_modules\":[]}]}]}]}'),
(31,2,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(32,2,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-.02em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"2em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"200\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Servicing The Hudson Valley\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"40px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_object_fit\":\"contain\",\"image_outer_border_radius\":\"!0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"lg md xl\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em 0em .5em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"sm xs\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0em 0em .5em 0em\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_font_size\":\"1.1em\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(33,19,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"LTL Delivery Services\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Efficient Solutions for Your Smaller Shipments\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"At McLeod Expedite, our LTL (Less-Than-Truckload) delivery services provide a cost-effective way to transport smaller shipments. We combine your goods with others, ensuring efficient and timely delivery while keeping costs low. Ideal for businesses with smaller loads.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"13:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>LTL Delivery Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Cost-Effective:</strong> Save money by sharing truck space with other shipments.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Efficient Delivery:</strong> Consolidated shipments for timely arrivals.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Reliable Service:</strong> Perfect for businesses needing to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Nationwide Coverage:</strong> Reliable LTL delivery services across the country.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Flexible Scheduling:</strong> Customize delivery times to fit your specific needs with guaranteed options. to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]'),
(34,19,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(35,2,'_cs_last_save','2024-11-27 14:48:23'),
(36,20,'_cs_last_save','2024-11-26 00:30:48'),
(37,21,'_wp_attached_file','2024/11/6.jpg'),
(38,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/11/6.jpg\";s:8:\"filesize\";i:140131;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20324;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7886;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82365;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:13:\"6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4922;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:14:\"6-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110380;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:14:\"6-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(39,21,'_cs_attachment_import','8f46ff91447d6deb9748ab65a9e5e426'),
(40,22,'_wp_attached_file','2024/11/ten.jpg'),
(41,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/ten.jpg\";s:8:\"filesize\";i:159513;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"ten-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24460;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"ten-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"ten-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9143;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"ten-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95280;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"ten-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5417;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"ten-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120049;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"ten-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120049;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(42,22,'_cs_attachment_import','cde910f3a672a78d1bf3043ee9bc2fa3'),
(43,23,'_wp_attached_file','2024/11/gol.jpg'),
(44,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/gol.jpg\";s:8:\"filesize\";i:127633;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"gol-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17979;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"gol-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"gol-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6990;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"gol-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74164;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"gol-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4497;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"gol-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75052;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"gol-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(45,23,'_cs_attachment_import','030a5f056a0296339816258542b57a43'),
(46,24,'_wp_attached_file','2024/11/kid.jpg'),
(47,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/kid.jpg\";s:8:\"filesize\";i:217352;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"kid-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26596;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"kid-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"kid-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8874;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"kid-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123010;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"kid-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5239;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"kid-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144314;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"kid-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(48,24,'_cs_attachment_import','4ed463e6d34bb4e5300ca90e3539ed41'),
(49,25,'_cs_template_identifier','element|__multi__'),
(50,25,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Amenities Photos\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"25% 25% 25% 25%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"21:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"sailboat\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Yacht Club\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"22:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"tennis-ball\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Courts\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"23:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"golf-flag-hole\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Golf Course\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"24:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-chimney-user\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Country club\",\"_modules\":[]}]}]}]}]}'),
(51,26,'_wp_attached_file','2024/11/mcl.png'),
(52,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:100;s:4:\"file\";s:15:\"2024/11/mcl.png\";s:8:\"filesize\";i:16567;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"mcl-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12925;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:14:\"mcl-100x50.png\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6548;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(53,26,'_cs_attachment_import','0645f9e0a79030de1c7d5df011da2fd7'),
(54,27,'_wp_attached_file','2024/11/bl-1.png'),
(55,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1221;s:6:\"height\";i:402;s:4:\"file\";s:16:\"2024/11/bl-1.png\";s:8:\"filesize\";i:4896;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"bl-1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bl-1-1024x337.png\";s:5:\"width\";i:1024;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bl-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:709;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"bl-1-768x253.png\";s:5:\"width\";i:768;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1871;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"bl-1-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203;}s:5:\"entry\";a:5:{s:4:\"file\";s:17:\"bl-1-1200x395.png\";s:5:\"width\";i:1200;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3321;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:17:\"bl-1-1200x402.png\";s:5:\"width\";i:1200;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3346;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:17:\"bl-1-1200x395.png\";s:5:\"width\";i:1200;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3321;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:17:\"bl-1-1200x402.png\";s:5:\"width\";i:1200;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(56,27,'_cs_attachment_import','e4d59b092a2530ca6bdc40b663bc785b'),
(57,28,'_cs_template_identifier','element|__multi__'),
(58,28,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Logo / Menu\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"1rem\",\"bar_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0px\",\"bar_height\":\"50px\",\"bar_outer_spacing\":\"25px\",\"bar_padding\":\"0em\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"1 0 0%\",\"container_margin\":\"!0px\",\"container_max_width\":\"1200px\",\"container_padding\":\"!0px\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_alt\":\"Logo\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_display\":\"block\",\"image_height\":46,\"image_href\":\"{{dc:global:home_url}}\",\"image_link\":true,\"image_padding\":\"0px 20px 0px 0px\",\"image_src\":\"26:full\",\"image_styled_max_width\":\"40vw\",\"image_width\":418},{\"_type\":\"layout-modal\",\"_bp_base\":\"4_4\",\"_icon\":\"nav-modal\",\"_label\":\"Navigation Modal\",\"modal_bg_color\":\"rgba(0, 0, 0, 0.88)\",\"modal_body_scroll\":\"disable\",\"modal_content_bg_color\":\"transparent\",\"modal_content_box_shadow_color\":\"transparent\",\"modal_content_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"modal_content_max_width\":\"none\",\"modal_content_padding\":\"0em 0em 0em 0em\",\"toggle_anchor_border_radius\":\"!100em\",\"toggle_anchor_box_shadow_dimensions\":\"!0em 0.15em 0.65em 0em\",\"toggle_anchor_graphic_margin\":\"5px 5px 5px 5px\",\"_modules\":[{\"_type\":\"nav-layered\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"anchor_base_font_size\":\"calc(16px + 3vmin)\",\"anchor_duration\":\"222ms\",\"anchor_flex_align\":\"baseline\",\"anchor_margin\":\"0em auto 0em auto\",\"anchor_max_width\":\"18em\",\"anchor_padding\":\"0.8em 1em 0.8em 1em\",\"anchor_primary_text_color\":\"rgba(255, 255, 255, 0.66)\",\"anchor_primary_text_color_alt\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.66)\",\"anchor_sub_indicator_color_alt\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_icon\":\"caret-right\",\"anchor_sub_indicator_margin\":\"0em -1.409em 0em 0.409em\",\"anchor_sub_indicator_width\":\"1em\",\"anchor_text_margin\":\"!0em\",\"menu\":\"menu:3\",\"menu_layered_back_label\":\"Back\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tTnOH9HL6UMsltkKQ6:0.52\",\"bg_upper_image\":\"27:full\",\"bg_upper_image_size\":\"contain\",\"bg_upper_type\":\"color\",\"container_bg_advanced\":true,\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"0 0 auto\",\"container_margin\":\"!0px\",\"container_padding\":\"5vw 10vw 5vw 10vw\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"css\":\"$el { width: 100%; }\",\"effects_animation_enter\":\"shakeY\",\"effects_scroll\":true,\"effects_type_scroll\":\"animation\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_animation_enter\":\"backInUp\",\"effects_scroll\":true,\"effects_type_mask\":\"radial\",\"effects_type_scroll\":\"animation\",\"hide_login\":\"\",\"image_alt\":\"Logo\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_display\":\"block\",\"image_height\":460,\"image_href\":\"{{dc:global:home_url}}\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_padding\":\"0px\",\"image_src\":\"17:full\",\"image_type\":\"scaling\",\"image_width\":688},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"16px\",\"anchor_bg_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"!0em\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0)\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"angle-down\",\"anchor_graphic_icon_alt\":\"angle-double-down\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#000000\",\"anchor_graphic_icon_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_graphic_icon_font_size\":\"2em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_graphic_interaction\":\"x-anchor-flip-y\",\"anchor_graphic_margin\":\"0px\",\"anchor_height\":\"4em\",\"anchor_href\":\"#section-id-for-scroll\",\"anchor_padding\":\"!0em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"anchor_width\":\"4em\",\"class\":\"custom-button\",\"effects_scroll\":true,\"effects_type_scroll\":\"animation\",\"hide_login\":\"\"}]}]}]}'),
(59,29,'_wp_attached_file','2024/11/Untitled-design.jpg'),
(60,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2024/11/Untitled-design.jpg\";s:8:\"filesize\";i:136347;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Untitled-design-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16565;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118651;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Untitled-design-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6486;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Untitled-design-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73928;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"Untitled-design-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4286;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:28:\"Untitled-design-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105347;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:28:\"Untitled-design-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105347;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(61,29,'_cs_attachment_import','db05cc6fd83f1ea390c8386705aafe3e'),
(62,30,'_wp_attached_file','2024/11/7.jpg'),
(63,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/11/7.jpg\";s:8:\"filesize\";i:125125;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18494;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7160;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73446;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:13:\"7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4576;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:14:\"7-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101599;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:14:\"7-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101599;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(64,30,'_cs_attachment_import','e27a8fd0c59cd3affeddc0df21b12313'),
(65,31,'_wp_attached_file','2024/11/3-1.jpg'),
(66,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/3-1.jpg\";s:8:\"filesize\";i:113594;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18507;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"3-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7543;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"3-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69855;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4880;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"3-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81459;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"3-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(67,31,'_cs_attachment_import','e65fa8da78a5b03dd766e37ea7a32d2f'),
(68,32,'_wp_attached_file','2024/11/4-1.jpg'),
(69,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/4-1.jpg\";s:8:\"filesize\";i:109279;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"4-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15698;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"4-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"4-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62183;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4166;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"4-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69545;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"4-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69545;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(70,32,'_cs_attachment_import','61b1762841b3948abbb8b221b31eb555'),
(71,33,'_cs_template_identifier','element|__multi__'),
(72,33,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services Graphics\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"33.33% 33.33% 33.33%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"13:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14:0.37\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"truck-fast\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"LTL services\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"29:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"truck-container\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"truckload services\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"30:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"person-running-fast\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/medical-and-stat-deliveries/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/medical-and-stat-deliveries/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"expedited services\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Breaking<br />Barriers in Shipping\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Let\'s talk Logistics\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"For fast, reliable delivery to your home or business, choose McLeod Expedite. We understand the critical importance of timely deliveries and are committed to ensuring your shipments arrive on schedule. As a trusted Omaha, NE delivery service, we offer a range of services, including on-demand, scheduled, air freight, and truckload options. Contact us today to learn how we can support your shipping needs.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_layout\":\"410px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"31:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>Local Courier Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>On-Demand Deliveries:</strong> Fast, same-day delivery whenever you need it.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Scheduled Services:</strong> Regularly scheduled pickups and deliveries to fit your timetable.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Medical Samples: </strong>Secure, fast delivery of medical specimens and lab samples.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Organ Delivery: </strong>Safe and rapid transport of organs for transplants.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Hospitals, Labs, Doctor Offices: </strong>Reliable courier services tailored to the medical field, ensuring timely deliveries to healthcare facilities.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>STAT Deliveries: </strong>Immediate, priority deliveries for time-sensitive needs.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/on-demand-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"On Demand Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/medical-and-stat-deliveries/\",\"anchor_margin\":\"auto 0px 18px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.968em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Medical &amp; Stat Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (3)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/scheduled-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Scheduled Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Truckload Delivery\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"32:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<span>Expedited Services</span>\",\"text_font_family\":\"system:helveticaneue\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Expedited LTL Service:</strong> When you needed it yesterday, we have your back! Less-Than-Truckload shipping for smaller shipments. From one letter to a pallet we do it all!\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Critical Medical Delivery Services: </strong>Urgent transport for essential medical items.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Seamless Business-to-Business Deliveries: </strong>Efficient and timely delivery solutions for B2B needs, ensuring smooth operations between businesses.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"0px 0px 14px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Truckload Services:</strong> Full truckload options for larger, bulk deliveries.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<b>Delivery Vehicles Available: Flat Bed Truck, Sprinter Van, Straight Truck &amp; 53\\\" Tractor Trailers&nbsp;</b>\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (2)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"LTL Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/business-to-business-deliveries/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Business to Business\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]}'),
(73,34,'_cs_template_identifier','element|__multi__'),
(74,34,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Logo / Menu\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"1rem\",\"bar_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0px\",\"bar_height\":\"50px\",\"bar_outer_spacing\":\"25px\",\"bar_padding\":\"0em\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"1 0 0%\",\"container_margin\":\"!0px\",\"container_max_width\":\"1200px\",\"container_padding\":\"!0px\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_alt\":\"Logo\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_display\":\"block\",\"image_height\":46,\"image_href\":\"{{dc:global:home_url}}\",\"image_link\":true,\"image_padding\":\"0px 20px 0px 0px\",\"image_src\":\"26:full\",\"image_styled_max_width\":\"40vw\",\"image_width\":418},{\"_type\":\"layout-modal\",\"_bp_base\":\"4_4\",\"_icon\":\"nav-modal\",\"_label\":\"Navigation Modal\",\"modal_bg_color\":\"rgba(0, 0, 0, 0.88)\",\"modal_body_scroll\":\"disable\",\"modal_content_bg_color\":\"transparent\",\"modal_content_box_shadow_color\":\"transparent\",\"modal_content_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"modal_content_max_width\":\"none\",\"modal_content_padding\":\"0em 0em 0em 0em\",\"toggle_anchor_border_radius\":\"!100em\",\"toggle_anchor_box_shadow_dimensions\":\"!0em 0.15em 0.65em 0em\",\"toggle_anchor_graphic_margin\":\"5px 5px 5px 5px\",\"_modules\":[{\"_type\":\"nav-layered\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"anchor_base_font_size\":\"calc(16px + 3vmin)\",\"anchor_duration\":\"222ms\",\"anchor_flex_align\":\"baseline\",\"anchor_margin\":\"0em auto 0em auto\",\"anchor_max_width\":\"18em\",\"anchor_padding\":\"0.8em 1em 0.8em 1em\",\"anchor_primary_text_color\":\"rgba(255, 255, 255, 0.66)\",\"anchor_primary_text_color_alt\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.66)\",\"anchor_sub_indicator_color_alt\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_icon\":\"caret-right\",\"anchor_sub_indicator_margin\":\"0em -1.409em 0em 0.409em\",\"anchor_sub_indicator_width\":\"1em\",\"anchor_text_margin\":\"!0em\",\"menu\":\"menu:3\",\"menu_layered_back_label\":\"Back\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tTnOH9HL6UMsltkKQ6:0.52\",\"bg_upper_image\":\"27:full\",\"bg_upper_image_size\":\"contain\",\"bg_upper_type\":\"color\",\"container_bg_advanced\":true,\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"0 0 auto\",\"container_margin\":\"!0px\",\"container_padding\":\"5vw 10vw 5vw 10vw\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"css\":\"$el { width: 100%; }\",\"effects_animation_enter\":\"shakeY\",\"effects_scroll\":true,\"effects_type_scroll\":\"animation\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_animation_enter\":\"backInUp\",\"effects_scroll\":true,\"effects_type_mask\":\"radial\",\"effects_type_scroll\":\"animation\",\"hide_login\":\"\",\"image_alt\":\"Logo\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_display\":\"block\",\"image_height\":460,\"image_href\":\"{{dc:global:home_url}}\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_padding\":\"0px\",\"image_src\":\"17:full\",\"image_type\":\"scaling\",\"image_width\":688},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"16px\",\"anchor_bg_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"!0em\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0)\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"angle-down\",\"anchor_graphic_icon_alt\":\"angle-double-down\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#000000\",\"anchor_graphic_icon_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_graphic_icon_font_size\":\"2em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_graphic_interaction\":\"x-anchor-flip-y\",\"anchor_graphic_margin\":\"0px\",\"anchor_height\":\"4em\",\"anchor_href\":\"#section-id-for-scroll\",\"anchor_padding\":\"!0em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"anchor_width\":\"4em\",\"class\":\"custom-button\",\"effects_scroll\":true,\"effects_type_scroll\":\"animation\",\"hide_login\":\"\"}]}]}]}'),
(75,35,'_wp_attached_file','2024/11/Baseline-Construction_Logo_Final.png'),
(76,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2024/11/Baseline-Construction_Logo_Final.png\";s:8:\"filesize\";i:134807;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Baseline-Construction_Logo_Final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Baseline-Construction_Logo_Final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19565;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:44:\"Baseline-Construction_Logo_Final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(77,36,'_wp_attached_file','2024/11/Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px.png'),
(78,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:200;s:4:\"file\";s:68:\"2024/11/Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px.png\";s:8:\"filesize\";i:52080;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14414;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:67:\"Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px-100x50.png\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6777;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(79,37,'_wp_attached_file','2024/11/Baseline-Construction_logo_square.png'),
(80,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:45:\"2024/11/Baseline-Construction_logo_square.png\";s:8:\"filesize\";i:132456;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Baseline-Construction_logo_square-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Baseline-Construction_logo_square-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18737;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"Baseline-Construction_logo_square-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(81,38,'_wp_attached_file','2024/11/4L9A7826.jpg'),
(82,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2509;s:6:\"height\";i:1673;s:4:\"file\";s:20:\"2024/11/4L9A7826.jpg\";s:8:\"filesize\";i:3612443;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A7826-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45640;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A7826-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A7826-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36211;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A7826-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111739;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A7826-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:330632;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A7826-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:562359;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A7826-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32401;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A7826-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216886;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A7826-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190842;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7826-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216886;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7826-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190842;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1694500166\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(83,39,'_wp_attached_file','2024/11/Baseline-Construction-Long-Logo800-x-400-px.png'),
(84,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:55:\"2024/11/Baseline-Construction-Long-Logo800-x-400-px.png\";s:8:\"filesize\";i:150122;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Baseline-Construction-Long-Logo800-x-400-px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31223;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Baseline-Construction-Long-Logo800-x-400-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12697;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Baseline-Construction-Long-Logo800-x-400-px-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133176;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:54:\"Baseline-Construction-Long-Logo800-x-400-px-100x50.png\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6026;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(85,40,'_wp_attached_file','2024/11/4L9A7824-scaled.jpg'),
(86,40,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/11/4L9A7824-scaled.jpg\";s:8:\"filesize\";i:851934;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A7824-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43631;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A7824-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A7824-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35216;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A7824-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106445;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A7824-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:319579;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A7824-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:549577;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A7824-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31395;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A7824-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207884;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A7824-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185010;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7824-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207884;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7824-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1694500135\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A7824.jpg\";}'),
(87,41,'_wp_attached_file','2024/11/4L9A3006.jpg'),
(88,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A3006.jpg\";s:8:\"filesize\";i:3258708;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3006-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50912;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40650;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A3006-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121420;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3006-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343494;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3006-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:567994;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A3006-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36412;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229680;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207479;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229680;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723269\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(89,42,'_wp_attached_file','2024/11/4L9A3009.jpg'),
(90,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A3009.jpg\";s:8:\"filesize\";i:3517978;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3009-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51870;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3009-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41503;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A3009-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128160;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3009-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:373766;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3009-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:617919;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A3009-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36808;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248198;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229169;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248198;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723311\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(91,43,'_wp_attached_file','2024/11/Erika-Ross-800-x-200-px.png'),
(92,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2024/11/Erika-Ross-800-x-200-px.png\";s:8:\"filesize\";i:249015;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Erika-Ross-800-x-200-px-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28922;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Erika-Ross-800-x-200-px-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194963;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Erika-Ross-800-x-200-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17438;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Erika-Ross-800-x-200-px-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125569;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"Erika-Ross-800-x-200-px-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4909;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(93,43,'_cs_attachment_import','80b41075b6e2a527e67dd4891a5483cf'),
(94,44,'_cs_template_identifier','element|__multi__'),
(95,44,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Header\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_color\":\"hsl(0, 0%, 100%)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0px\",\"bar_height\":\"7em\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"0em\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_sticky\":true,\"bar_width\":\"210px\",\"bg_border_radius\":\"inherit\",\"hide_bp\":\"none\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Logo\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"0 0 auto\",\"container_height\":\"6em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_alt\":\"Erika Ross The Moorings\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":750,\"image_href\":\"/\",\"image_inner_border_radius\":\"0em\",\"image_link\":true,\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0em\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"43:full\",\"image_type\":\"scaling\",\"image_width\":1800}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Navigation\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"1 0 0%\",\"container_margin\":\"0px\",\"container_padding\":\"0px\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"md sm xs\",\"_modules\":[{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"black\",\"anchor_graphic_icon_color_alt\":\"black\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_margin\":\"4px\",\"anchor_padding\":\"0.5em 0.75em 0.5em 0.75em\",\"anchor_primary_font_family\":\"426f647920436f7079\",\"anchor_primary_font_size\":\"1.5em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_letter_spacing\":\".1em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"black\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_location\":\"t_c\",\"anchor_primary_particle_transform_origin\":\"50% 0%\",\"anchor_primary_text_color\":\"global-color:4272616e64205365636f6e64617279\",\"anchor_primary_text_color_alt\":\"hsl(0, 2%, 69%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_location\":\"t_c\",\"anchor_secondary_particle_transform_origin\":\"50% 0%\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"black\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 100%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 54%)\",\"anchor_sub_indicator_margin\":\"!0px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px\",\"dropdown_base_font_size\":\"12px\",\"dropdown_bg_color\":\"global-color:4272616e64205072696d617279\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_width\":\"18em\",\"hide_bp\":\"none\",\"menu\":\"menu:380\",\"menu_base_font_size\":\"0.9em\",\"menu_flex\":\"0 1 auto\",\"menu_margin\":\"0px\",\"sub_anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_font_size\":\"1.5em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"1.25em\",\"sub_anchor_primary_font_family\":\"48656164696e6773\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_height\":\"100%\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_scale\":\"scale-x\",\"sub_anchor_primary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_primary_particle_width\":\"3px\",\"sub_anchor_primary_text_color\":\"white\",\"sub_anchor_primary_text_color_alt\":\"white\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_secondary_font_size\":\"1em\",\"sub_anchor_secondary_particle_color\":\"#ffba00\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_height\":\"100%\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_scale\":\"scale-x\",\"sub_anchor_secondary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_secondary_particle_width\":\"3px\",\"sub_anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_font_size\":\"1.5em\",\"sub_anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_width\":\"100%\"}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Hamburger\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"nav-collapsed\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 55%)\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0em 0.575em 0em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"global-color:4c696e6b\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"hsl(0, 0%, 100%)\",\"anchor_primary_text_color_alt\":\"hsl(0, 1%, 73%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_size\":\"0.725em\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"white\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 98%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 1%, 57%)\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"legacy_region_detect\":true,\"menu\":\"menu:48\",\"off_canvas_base_font_size\":\"20px\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.7)\",\"off_canvas_close_color\":\"rgb(255, 255, 255)\",\"off_canvas_close_color_alt\":\"global-color:YFP6101dwXohQOJ4sw\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_bg_color\":\"global-color:4272616e64205072696d617279\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_dynamic_rendering\":true,\"off_canvas_content_max_width\":\"275px\",\"off_canvas_esc_key_close\":true,\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"sub_anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 53%)\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_type\":\"image\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"0.575em 0em 0.575em .75em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_width\":\"3%\",\"sub_anchor_primary_text_color\":\"hsl(0, 1%, 98%)\",\"sub_anchor_primary_text_color_alt\":\"hsl(0, 0%, 52%)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_size\":\"0.725em\",\"sub_anchor_secondary_particle_color\":\"black\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_color\":\"black\",\"sub_anchor_secondary_text_color_alt\":\"white\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"hsl(0, 0%, 96%)\",\"sub_anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 55%)\",\"sub_anchor_sub_indicator_margin\":\"5px 5px 5px 15px\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_bg_color\":\"global-color:4272616e64205072696d617279\",\"toggle_anchor_bg_color_alt\":\"rgb(255, 255, 255)\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"5px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_box_shadow_color\":\"transparent\",\"toggle_anchor_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"toggle_anchor_graphic_icon\":\"hand-pointer-o\",\"toggle_anchor_graphic_icon_alt\":\"hand-spock-o\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_primary_font_weight\":\"400\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_font_size\":\"0.725em\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_particle_delay\":\"0\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_text_spacing\":\"5px\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_color\":\"global-color:4c696e6b\",\"toggle_color_alt\":\"global-color:4272616e64205072696d617279\",\"toggle_more_size\":\"6px\",\"toggle_more_spacing\":\"1.5em\",\"toggle_type\":\"more-h-1\"}]}]}]}'),
(96,45,'_cs_template_identifier','element|__multi__'),
(97,45,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Header\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_color\":\"hsl(0, 0%, 100%)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0px\",\"bar_height\":\"7em\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"0em\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_sticky\":true,\"bar_width\":\"210px\",\"bg_border_radius\":\"inherit\",\"hide_bp\":\"none\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Logo\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"0 0 auto\",\"container_height\":\"6em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_alt\":\"Erika Ross The Moorings\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":750,\"image_href\":\"/\",\"image_inner_border_radius\":\"0em\",\"image_link\":true,\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0em\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"43:full\",\"image_type\":\"scaling\",\"image_width\":1800}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Navigation\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"1 0 0%\",\"container_margin\":\"0px\",\"container_padding\":\"0px\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"md sm xs\",\"_modules\":[{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"black\",\"anchor_graphic_icon_color_alt\":\"black\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_margin\":\"4px\",\"anchor_padding\":\"0.5em 0.75em 0.5em 0.75em\",\"anchor_primary_font_family\":\"426f647920436f7079\",\"anchor_primary_font_size\":\"1.5em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_letter_spacing\":\".1em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"black\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_location\":\"t_c\",\"anchor_primary_particle_transform_origin\":\"50% 0%\",\"anchor_primary_text_color\":\"global-color:4272616e64205365636f6e64617279\",\"anchor_primary_text_color_alt\":\"hsl(0, 2%, 69%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_location\":\"t_c\",\"anchor_secondary_particle_transform_origin\":\"50% 0%\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"black\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 100%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 54%)\",\"anchor_sub_indicator_margin\":\"!0px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px\",\"dropdown_base_font_size\":\"12px\",\"dropdown_bg_color\":\"global-color:4272616e64205072696d617279\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_width\":\"18em\",\"hide_bp\":\"none\",\"menu\":\"menu:380\",\"menu_base_font_size\":\"0.9em\",\"menu_flex\":\"0 1 auto\",\"menu_margin\":\"0px\",\"sub_anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_font_size\":\"1.5em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"1.25em\",\"sub_anchor_primary_font_family\":\"48656164696e6773\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_height\":\"100%\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_scale\":\"scale-x\",\"sub_anchor_primary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_primary_particle_width\":\"3px\",\"sub_anchor_primary_text_color\":\"white\",\"sub_anchor_primary_text_color_alt\":\"white\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_secondary_font_size\":\"1em\",\"sub_anchor_secondary_particle_color\":\"#ffba00\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_height\":\"100%\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_scale\":\"scale-x\",\"sub_anchor_secondary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_secondary_particle_width\":\"3px\",\"sub_anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_font_size\":\"1.5em\",\"sub_anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_width\":\"100%\"}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Hamburger\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"nav-collapsed\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 55%)\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0em 0.575em 0em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"global-color:4c696e6b\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"hsl(0, 0%, 100%)\",\"anchor_primary_text_color_alt\":\"hsl(0, 1%, 73%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_size\":\"0.725em\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"white\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 98%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 1%, 57%)\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"legacy_region_detect\":true,\"menu\":\"menu:48\",\"off_canvas_base_font_size\":\"20px\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.7)\",\"off_canvas_close_color\":\"rgb(255, 255, 255)\",\"off_canvas_close_color_alt\":\"global-color:YFP6101dwXohQOJ4sw\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_bg_color\":\"global-color:4272616e64205072696d617279\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_dynamic_rendering\":true,\"off_canvas_content_max_width\":\"275px\",\"off_canvas_esc_key_close\":true,\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"sub_anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 53%)\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_type\":\"image\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"0.575em 0em 0.575em .75em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_width\":\"3%\",\"sub_anchor_primary_text_color\":\"hsl(0, 1%, 98%)\",\"sub_anchor_primary_text_color_alt\":\"hsl(0, 0%, 52%)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_size\":\"0.725em\",\"sub_anchor_secondary_particle_color\":\"black\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_color\":\"black\",\"sub_anchor_secondary_text_color_alt\":\"white\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"hsl(0, 0%, 96%)\",\"sub_anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 55%)\",\"sub_anchor_sub_indicator_margin\":\"5px 5px 5px 15px\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_bg_color\":\"global-color:4272616e64205072696d617279\",\"toggle_anchor_bg_color_alt\":\"rgb(255, 255, 255)\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"5px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_box_shadow_color\":\"transparent\",\"toggle_anchor_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"toggle_anchor_graphic_icon\":\"hand-pointer-o\",\"toggle_anchor_graphic_icon_alt\":\"hand-spock-o\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_primary_font_weight\":\"400\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_font_size\":\"0.725em\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_particle_delay\":\"0\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_text_spacing\":\"5px\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_color\":\"global-color:4c696e6b\",\"toggle_color_alt\":\"global-color:4272616e64205072696d617279\",\"toggle_more_size\":\"6px\",\"toggle_more_spacing\":\"1.5em\",\"toggle_type\":\"more-h-1\"}]}]}]}'),
(98,20,'_cs_states_cache',''),
(99,46,'_wp_page_template','template-blank-4.php'),
(100,46,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(101,46,'_cornerstone_data','[]'),
(102,47,'_cornerstone_data','[]'),
(103,47,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(104,46,'_cs_last_save','2024-11-25 22:35:00'),
(105,46,'_cs_states_cache',''),
(106,48,'_cornerstone_data','[]'),
(107,48,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(108,49,'_wp_page_template','template-blank-4.php'),
(109,49,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(110,49,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"section_bg_color\":\"rgb(255, 255, 255)\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,null,null,null]},\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d28274.657445833!2d-80.41748058278951!3d27.645192577947732!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88de5ee460d0c2a5%3A0xbce1aea5a8f725a4!2sVero%20Beach%2C%20FL!5e0!3m2!1sen!2sus!4v1732579218749!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]'),
(111,50,'_cornerstone_data','[]'),
(112,50,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(113,49,'_cs_last_save','2024-11-26 17:04:49'),
(114,49,'_cs_states_cache',''),
(115,51,'_cornerstone_data','[]'),
(116,51,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(118,52,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"LTL Delivery Services\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Efficient Solutions for Your Smaller Shipments\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"At McLeod Expedite, our LTL (Less-Than-Truckload) delivery services provide a cost-effective way to transport smaller shipments. We combine your goods with others, ensuring efficient and timely delivery while keeping costs low. Ideal for businesses with smaller loads.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"13:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>LTL Delivery Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Cost-Effective:</strong> Save money by sharing truck space with other shipments.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Efficient Delivery:</strong> Consolidated shipments for timely arrivals.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Reliable Service:</strong> Perfect for businesses needing to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Nationwide Coverage:</strong> Reliable LTL delivery services across the country.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Flexible Scheduling:</strong> Customize delivery times to fit your specific needs with guaranteed options. to ship smaller loads.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"#e9e9e9\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"15:full\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Breaking<br />Barriers in Shipping\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"rgb(0, 0, 0)\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]'),
(119,52,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(122,53,'_cs_template_identifier','element|__multi__'),
(123,53,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_order\":0,\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Our core values.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 0%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"We Foster Education\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"column\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"#888888\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"graduation-cap\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"35px\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"We Pursue Excellence\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"column\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"#888888\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"trophy\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"We Practice Honesty\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"column\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"#888888\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"handshake-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"35px\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"We Create Fun\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"column\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"#888888\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"paint-brush\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#000000\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"About our process.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 0.5em 0em\",\"text_padding\":\"0em 0em 0.5em 0em\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_border_style\":\"none none solid none\",\"text_border_color\":\"transparent transparent #888888 transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Direct Communication\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"_order\":0,\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">01</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">02</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">03</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">04</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"30px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Weekly Check-Ins\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"_order\":0,\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">01</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">02</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">03</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">04</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"30px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Ongoing Discovery\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1.25em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"_order\":0,\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">01</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">02</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">03</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\\n\\n<p>\\n<span style=\\\"display: block; margin: 0; font-size: 1.25em; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; color: #fff;\\\">04</span>\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat.\\n</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.7\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"220px\",\"text_columns_gap\":\"35px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}}]}'),
(124,54,'_cs_template_identifier','element|accordion'),
(125,54,'_cs_template_data','{\"atts\":{\"_type\":\"accordion\",\"accordion_base_font_size\":\"1em\",\"accordion_width\":\"100%\",\"accordion_max_width\":\"none\",\"accordion_grouped\":false,\"accordion_group\":\"\",\"accordion_bg_color\":\"transparent\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"accordion_border_width\":\"0px\",\"accordion_border_style\":\"none\",\"accordion_border_color\":\"transparent\",\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_box_shadow_color\":\"transparent\",\"accordion_item_overflow\":true,\"accordion_item_spacing\":\"1em\",\"accordion_item_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_border_width\":\"0px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_color\":\"transparent\",\"accordion_item_border_radius\":\"3px\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.65em 0em\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.15)\",\"accordion_header_text_overflow\":false,\"accordion_header_indicator\":true,\"accordion_header_content_spacing\":\"0.5em\",\"accordion_header_content_reverse\":false,\"accordion_header_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_header_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"accordion_header_indicator_type\":\"text\",\"accordion_header_indicator_text\":\"&#x25b8;\",\"accordion_header_indicator_icon\":\"caret-right\",\"accordion_header_indicator_font_size\":\"1em\",\"accordion_header_indicator_width\":\"auto\",\"accordion_header_indicator_height\":\"1em\",\"accordion_header_indicator_rotation_start\":\"0deg\",\"accordion_header_indicator_rotation_end\":\"90deg\",\"accordion_header_indicator_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_indicator_color_alt\":\"rgb(232, 47, 58)\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_padding\":\"15px 20px 15px 20px\",\"accordion_header_border_width\":\"0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_color\":\"transparent\",\"accordion_header_border_color_alt\":\"transparent\",\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_box_shadow_color\":\"transparent\",\"accordion_header_box_shadow_color_alt\":\"transparent\",\"accordion_header_font_family\":\"inherit\",\"accordion_header_font_weight\":\"400\",\"accordion_header_font_size\":\"1em\",\"accordion_header_letter_spacing\":\"0em\",\"accordion_header_line_height\":\"1.3\",\"accordion_header_font_style\":\"normal\",\"accordion_header_text_align\":\"left\",\"accordion_header_text_decoration\":\"none\",\"accordion_header_text_transform\":\"none\",\"accordion_header_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_text_color_alt\":\"hsl(0, 0%, 0%)\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_header_text_shadow_color\":\"transparent\",\"accordion_header_text_shadow_color_alt\":\"transparent\",\"accordion_content_bg_color\":\"transparent\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_padding\":\"20px 20px 20px 20px\",\"accordion_content_border_width\":\"1px 0 0 0\",\"accordion_content_border_style\":\"solid solid solid solid\",\"accordion_content_border_color\":\"hsla(0,0%,0%,0.1) transparent transparent transparent\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_box_shadow_color\":\"transparent\",\"accordion_content_font_family\":\"inherit\",\"accordion_content_font_weight\":\"400\",\"accordion_content_font_size\":\"1em\",\"accordion_content_letter_spacing\":\"0em\",\"accordion_content_line_height\":\"1.6\",\"accordion_content_font_style\":\"normal\",\"accordion_content_text_align\":\"none\",\"accordion_content_text_decoration\":\"none\",\"accordion_content_text_transform\":\"none\",\"accordion_content_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_content_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(126,55,'_cs_template_identifier','element|alert'),
(127,55,'_cs_template_data','{\"atts\":{\"_type\":\"alert\",\"alert_close\":true,\"alert_width\":\"auto\",\"alert_max_width\":\"none\",\"alert_content\":\"<strong>Hey there!</strong><br>\\nThis is where the content for your alert goes. Best to keep it short and sweet!\",\"alert_bg_color\":\"#ffdfe1\",\"alert_close_font_size\":\"1em\",\"alert_close_location\":\"right\",\"alert_close_offset_top\":\"1em\",\"alert_close_offset_side\":\"1em\",\"alert_margin\":\"0em\",\"alert_padding\":\"1em 2.75em 1em 1.15em\",\"alert_border_width\":\"1px\",\"alert_border_style\":\"solid\",\"alert_border_color\":\"rgb(232,47,58)\",\"alert_border_radius\":\"3px\",\"alert_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"alert_box_shadow_color\":\"hsla(0, 0%, 0%, 0.05)\",\"alert_font_family\":\"inherit\",\"alert_font_weight\":\"400\",\"alert_font_size\":\"1em\",\"alert_line_height\":\"1.5\",\"alert_letter_spacing\":\"0em\",\"alert_font_style\":\"normal\",\"alert_text_align\":\"none\",\"alert_text_decoration\":\"none\",\"alert_text_transform\":\"none\",\"alert_text_color\":\"rgb(232, 47, 58)\",\"alert_text_shadow_dimensions\":\"0px 0px 0px\",\"alert_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"alert_close_color\":\"hsla(356, 80%, 55%, 0.5)\",\"alert_close_color_alt\":\"rgb(232, 47, 58)\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(128,56,'_cs_template_identifier','element|audio'),
(129,56,'_cs_template_data','{\"atts\":{\"_type\":\"audio\",\"audio_type\":\"embed\",\"audio_width\":\"100%\",\"audio_max_width\":\"none\",\"audio_embed_code\":\"\",\"mejs_source_files\":\"\",\"audio_margin\":\"0em\",\"mejs_type\":\"audio\",\"mejs_preload\":\"metadata\",\"mejs_advanced_controls\":false,\"mejs_autoplay\":false,\"mejs_loop\":false,\"mejs_controls_button_color\":\"rgba(255, 255, 255, 0.5)\",\"mejs_controls_button_color_alt\":\"rgb(232, 47, 58)\",\"mejs_controls_time_total_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"mejs_controls_time_loaded_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"mejs_controls_time_current_bg_color\":\"rgb(232, 47, 58)\",\"mejs_controls_color\":\"rgba(255, 255, 255, 0.5)\",\"mejs_controls_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"mejs_controls_padding\":\"0px\",\"mejs_controls_border_width\":\"0px\",\"mejs_controls_border_style\":\"none\",\"mejs_controls_border_color\":\"transparent\",\"mejs_controls_border_radius\":\"3px\",\"mejs_controls_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"mejs_controls_box_shadow_color\":\"transparent\",\"mejs_controls_time_rail_border_radius\":\"2px\",\"mejs_controls_time_rail_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"mejs_controls_time_rail_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"css\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_bp_base\":\"4_4\"}}'),
(130,57,'_cs_template_identifier','element|__multi__'),
(131,57,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_order\":0,\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(60, 60, 60)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Designer\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"What We\'re Looking For\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_border_style\":\"none none solid none\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"left\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"210px\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(40, 40, 40)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Developer\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"What We\'re Looking For\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_border_style\":\"none none solid none\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"left\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"210px\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(20, 20, 20)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Marketer\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"What We\'re Looking For\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_border_style\":\"none none solid none\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"left\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"210px\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(0, 0, 0)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Support\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"What We\'re Looking For\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_border_style\":\"none none solid none\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"left\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"avoid\",\"text_columns\":true,\"text_columns_count\":2,\"text_columns_width\":\"210px\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}}]}'),
(132,58,'_cs_template_identifier','element|breadcrumbs'),
(133,58,'_cs_template_data','{\"atts\":{\"_type\":\"breadcrumbs\",\"breadcrumbs_home_label_type\":\"icon\",\"breadcrumbs_home_label_text\":\"Home\",\"breadcrumbs_home_label_icon\":\"home\",\"breadcrumbs_width\":\"auto\",\"breadcrumbs_max_width\":\"none\",\"breadcrumbs_flex_justify\":\"flex-start\",\"breadcrumbs_reverse\":false,\"breadcrumbs_bg_color\":\"transparent\",\"breadcrumbs_font_family\":\"inherit\",\"breadcrumbs_font_weight\":\"400\",\"breadcrumbs_font_size\":\"1em\",\"breadcrumbs_line_height\":\"1.4\",\"breadcrumbs_margin\":\"0em\",\"breadcrumbs_padding\":\"0em\",\"breadcrumbs_border_width\":\"0px\",\"breadcrumbs_border_style\":\"none\",\"breadcrumbs_border_color\":\"transparent\",\"breadcrumbs_border_radius\":\"0em\",\"breadcrumbs_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"breadcrumbs_box_shadow_color\":\"transparent\",\"breadcrumbs_delimiter\":true,\"breadcrumbs_delimiter_type\":\"text\",\"breadcrumbs_delimiter_ltr_text\":\"/\",\"breadcrumbs_delimiter_rtl_text\":\"/\",\"breadcrumbs_delimiter_ltr_icon\":\"angle-right\",\"breadcrumbs_delimiter_rtl_icon\":\"angle-left\",\"breadcrumbs_delimiter_spacing\":\"10px\",\"breadcrumbs_delimiter_color\":\"rgba(0, 0, 0, 0.35)\",\"breadcrumbs_delimiter_text_shadow_dimensions\":\"0px 0px 0px\",\"breadcrumbs_delimiter_text_shadow_color\":\"transparent\",\"breadcrumbs_links_base_font_size\":\"1em\",\"breadcrumbs_links_min_width\":\"0em\",\"breadcrumbs_links_max_width\":\"none\",\"breadcrumbs_links_color\":\"hsla(0, 0%, 0%, 0.35)\",\"breadcrumbs_links_color_alt\":\"rgb(232, 47, 58)\",\"breadcrumbs_links_bg_color\":\"transparent\",\"breadcrumbs_links_bg_color_alt\":\"transparent\",\"breadcrumbs_links_font_style\":\"normal\",\"breadcrumbs_links_text_align\":\"none\",\"breadcrumbs_links_text_transform\":\"none\",\"breadcrumbs_links_letter_spacing\":\"0em\",\"breadcrumbs_links_line_height\":\"1.3\",\"breadcrumbs_links_text_shadow_dimensions\":\"0px 0px 0px\",\"breadcrumbs_links_text_shadow_color\":\"transparent\",\"breadcrumbs_links_text_shadow_color_alt\":\"transparent\",\"breadcrumbs_links_margin\":\"0px 0px 0px 0px\",\"breadcrumbs_links_padding\":\"0em 0em 0em 0em\",\"breadcrumbs_links_border_width\":\"0px\",\"breadcrumbs_links_border_style\":\"none\",\"breadcrumbs_links_border_color\":\"transparent\",\"breadcrumbs_links_border_color_alt\":\"transparent\",\"breadcrumbs_links_border_radius\":\"0em\",\"breadcrumbs_links_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"breadcrumbs_links_box_shadow_color\":\"transparent\",\"breadcrumbs_links_box_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(134,59,'_cs_template_identifier','element|button'),
(135,59,'_cs_template_data','{\"atts\":{\"_type\":\"button\",\"anchor_type\":\"button\",\"anchor_has_template\":true,\"anchor_has_link_control\":true,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"#e82f3a\",\"anchor_bg_color_alt\":\"#cb0c2a\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.75em 0.85em 0.75em 0.85em\",\"anchor_border_width\":\"0px 0px 3px 0px\",\"anchor_border_style\":\"none none solid none\",\"anchor_border_color\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"anchor_border_color_alt\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"anchor_border_radius\":\"0.35em\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"anchor_text_margin\":\"4px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"center\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"white\",\"anchor_primary_text_color_alt\":\"white\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_href\":\"#\",\"anchor_info\":\"\",\"anchor_blank\":false,\"anchor_nofollow\":false,\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.35em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_text_align\":\"center\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.65)\",\"anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.65)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"4px\",\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.65)\",\"anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.65)\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":false,\"anchor_secondary_particle\":false,\"anchor_primary_particle_location\":\"c_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-x\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_transform_origin\":\"50% 50%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"100%\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.05)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"c_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-x\",\"anchor_secondary_particle_delay\":\"0.25s\",\"anchor_secondary_particle_transform_origin\":\"50% 50%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"100%\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"rgba(0, 0, 0, 0.05)\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"Learn More\",\"anchor_text_secondary_content\":\"\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-pointer-o\",\"anchor_graphic_image_width\":48,\"anchor_graphic_image_height\":48,\"anchor_graphic_image_src\":\"\",\"anchor_graphic_image_src_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":false,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(136,60,'_cs_template_identifier','element|tp-wc-cart-dropdown'),
(137,60,'_cs_template_data','{\"atts\":{\"_type\":\"tp-wc-cart-dropdown\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"icon\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":true,\"toggle_anchor_graphic_icon_font_size\":\"1.25em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"shopping-cart\",\"toggle_anchor_graphic_icon_alt\":\"cart-arrow-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"dropdown_base_font_size\":\"16px\",\"dropdown_width\":\"350px\",\"dropdown_bg_color\":\"#ffffff\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"2em\",\"dropdown_border_width\":\"0px\",\"dropdown_border_style\":\"none\",\"dropdown_border_color\":\"transparent\",\"dropdown_border_radius\":\"0em\",\"dropdown_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"dropdown_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"cart_title\":\"Your Items\",\"cart_order_items\":\"1\",\"cart_order_total\":\"2\",\"cart_order_buttons\":\"3\",\"cart_title_font_family\":\"inherit\",\"cart_title_font_weight\":\"700\",\"cart_title_font_size\":\"2em\",\"cart_title_letter_spacing\":\"-0.035em\",\"cart_title_line_height\":\"1.1\",\"cart_title_font_style\":\"normal\",\"cart_title_text_align\":\"none\",\"cart_title_text_decoration\":\"none\",\"cart_title_text_transform\":\"none\",\"cart_title_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_title_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_title_text_shadow_color\":\"transparent\",\"cart_title_margin\":\"0em 0em 0.35em 0em\",\"cart_items_display_remove\":true,\"cart_items_content_spacing\":\"1em\",\"cart_items_bg\":\"transparent\",\"cart_items_bg_alt\":\"transparent\",\"cart_items_margin\":\"0px\",\"cart_items_padding\":\"1em 0em 1em 0em\",\"cart_items_border_width\":\"1px 0px 0px 0px\",\"cart_items_border_style\":\"solid\",\"cart_items_border_color\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_color_alt\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_radius\":\"0px\",\"cart_items_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_items_box_shadow_color\":\"transparent\",\"cart_items_box_shadow_color_alt\":\"transparent\",\"cart_thumbs_width\":\"70px\",\"cart_thumbs_border_radius\":\"0.5em\",\"cart_thumbs_box_shadow_dimensions\":\"0em 0.15em 1em 0em\",\"cart_thumbs_box_shadow_color\":\"rgba(0, 0, 0, 0.05)\",\"cart_links_font_family\":\"inherit\",\"cart_links_font_weight\":\"400\",\"cart_links_font_size\":\"1em\",\"cart_links_letter_spacing\":\"0em\",\"cart_links_line_height\":\"1.4\",\"cart_links_font_style\":\"normal\",\"cart_links_text_align\":\"none\",\"cart_links_text_decoration\":\"none\",\"cart_links_text_transform\":\"none\",\"cart_links_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_links_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"cart_links_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_links_text_shadow_color\":\"transparent\",\"cart_links_text_shadow_color_alt\":\"transparent\",\"cart_quantity_font_family\":\"inherit\",\"cart_quantity_font_weight\":\"400\",\"cart_quantity_font_size\":\"0.75em\",\"cart_quantity_letter_spacing\":\"0em\",\"cart_quantity_line_height\":\"1.9\",\"cart_quantity_font_style\":\"normal\",\"cart_quantity_text_align\":\"none\",\"cart_quantity_text_decoration\":\"none\",\"cart_quantity_text_transform\":\"none\",\"cart_quantity_text_color\":\"rgba(0, 0, 0, 0.35)\",\"cart_quantity_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_quantity_text_shadow_color\":\"transparent\",\"cart_total_bg\":\"transparent\",\"cart_total_font_family\":\"inherit\",\"cart_total_font_weight\":\"400\",\"cart_total_font_size\":\"1em\",\"cart_total_letter_spacing\":\"0em\",\"cart_total_line_height\":\"1\",\"cart_total_font_style\":\"normal\",\"cart_total_text_align\":\"center\",\"cart_total_text_decoration\":\"none\",\"cart_total_text_transform\":\"none\",\"cart_total_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_total_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_total_text_shadow_color\":\"transparent\",\"cart_total_margin\":\"0px\",\"cart_total_padding\":\"0.75em 0em 0.75em 0em\",\"cart_total_border_width\":\"1px 0px 1px 0px\",\"cart_total_border_style\":\"solid\",\"cart_total_border_color\":\"rgba(0, 0, 0, 0.065) transparent rgba(0, 0, 0, 0.065) transparent\",\"cart_total_border_radius\":\"0px\",\"cart_total_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_total_box_shadow_color\":\"transparent\",\"cart_buttons_justify_content\":\"space-between\",\"cart_buttons_bg\":\"transparent\",\"cart_buttons_margin\":\"1em 0em 0em 0em\",\"cart_buttons_padding\":\"0px\",\"cart_buttons_border_width\":\"0px\",\"cart_buttons_border_style\":\"solid\",\"cart_buttons_border_color\":\"transparent\",\"cart_buttons_border_radius\":\"0px\",\"cart_anchor_type\":\"button\",\"cart_anchor_has_template\":false,\"cart_anchor_has_link_control\":false,\"cart_anchor_base_font_size\":\"1em\",\"cart_anchor_width\":\"47.5%\",\"cart_anchor_height\":\"auto\",\"cart_anchor_min_width\":\"0px\",\"cart_anchor_min_height\":\"0px\",\"cart_anchor_max_width\":\"none\",\"cart_anchor_max_height\":\"none\",\"cart_anchor_bg_color\":\"#e82f3a\",\"cart_anchor_bg_color_alt\":\"#cb0c2a\",\"cart_anchor_margin\":\"0em\",\"cart_anchor_padding\":\"0.75em 0.85em 0.75em 0.85em\",\"cart_anchor_border_width\":\"0px 0px 3px 0px\",\"cart_anchor_border_style\":\"none none solid none\",\"cart_anchor_border_color\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_color_alt\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_radius\":\"0.5em\",\"cart_anchor_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"cart_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_text_margin\":\"0px\",\"cart_anchor_primary_font_family\":\"inherit\",\"cart_anchor_primary_font_weight\":\"400\",\"cart_anchor_primary_font_size\":\"1em\",\"cart_anchor_primary_letter_spacing\":\"0em\",\"cart_anchor_primary_line_height\":\"1\",\"cart_anchor_primary_font_style\":\"normal\",\"cart_anchor_primary_text_align\":\"center\",\"cart_anchor_primary_text_decoration\":\"none\",\"cart_anchor_primary_text_transform\":\"none\",\"cart_anchor_primary_text_color\":\"white\",\"cart_anchor_primary_text_color_alt\":\"white\",\"cart_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_anchor_primary_text_shadow_color\":\"transparent\",\"cart_anchor_primary_text_shadow_color_alt\":\"transparent\",\"cart_anchor_text\":\"1\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(138,61,'_cs_template_identifier','element|tp-wc-cart-modal'),
(139,61,'_cs_template_data','{\"atts\":{\"_type\":\"tp-wc-cart-modal\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"icon\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":true,\"toggle_anchor_graphic_icon_font_size\":\"1.25em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"shopping-cart\",\"toggle_anchor_graphic_icon_alt\":\"cart-arrow-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"modal_base_font_size\":\"16px\",\"modal_close_location\":\"top-right\",\"modal_close_font_size\":\"1.5em\",\"modal_close_dimensions\":\"1\",\"modal_content_max_width\":\"450px\",\"modal_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"modal_close_color\":\"rgba(255, 255, 255, 0.5)\",\"modal_close_color_alt\":\"#ffffff\",\"modal_content_bg_color\":\"#ffffff\",\"modal_content_padding\":\"2em\",\"modal_content_border_width\":\"0px\",\"modal_content_border_style\":\"none\",\"modal_content_border_color\":\"transparent\",\"modal_content_border_radius\":\"0em\",\"modal_content_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"modal_content_box_shadow_color\":\"rgba(0, 0, 0, 0.5)\",\"cart_title\":\"Your Items\",\"cart_order_items\":\"1\",\"cart_order_total\":\"2\",\"cart_order_buttons\":\"3\",\"cart_title_font_family\":\"inherit\",\"cart_title_font_weight\":\"700\",\"cart_title_font_size\":\"2em\",\"cart_title_letter_spacing\":\"-0.035em\",\"cart_title_line_height\":\"1.1\",\"cart_title_font_style\":\"normal\",\"cart_title_text_align\":\"none\",\"cart_title_text_decoration\":\"none\",\"cart_title_text_transform\":\"none\",\"cart_title_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_title_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_title_text_shadow_color\":\"transparent\",\"cart_title_margin\":\"0em 0em 0.35em 0em\",\"cart_items_display_remove\":true,\"cart_items_content_spacing\":\"1em\",\"cart_items_bg\":\"transparent\",\"cart_items_bg_alt\":\"transparent\",\"cart_items_margin\":\"0px\",\"cart_items_padding\":\"1em 0em 1em 0em\",\"cart_items_border_width\":\"1px 0px 0px 0px\",\"cart_items_border_style\":\"solid\",\"cart_items_border_color\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_color_alt\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_radius\":\"0px\",\"cart_items_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_items_box_shadow_color\":\"transparent\",\"cart_items_box_shadow_color_alt\":\"transparent\",\"cart_thumbs_width\":\"70px\",\"cart_thumbs_border_radius\":\"0.5em\",\"cart_thumbs_box_shadow_dimensions\":\"0em 0.15em 1em 0em\",\"cart_thumbs_box_shadow_color\":\"rgba(0, 0, 0, 0.05)\",\"cart_links_font_family\":\"inherit\",\"cart_links_font_weight\":\"400\",\"cart_links_font_size\":\"1em\",\"cart_links_letter_spacing\":\"0em\",\"cart_links_line_height\":\"1.4\",\"cart_links_font_style\":\"normal\",\"cart_links_text_align\":\"none\",\"cart_links_text_decoration\":\"none\",\"cart_links_text_transform\":\"none\",\"cart_links_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_links_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"cart_links_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_links_text_shadow_color\":\"transparent\",\"cart_links_text_shadow_color_alt\":\"transparent\",\"cart_quantity_font_family\":\"inherit\",\"cart_quantity_font_weight\":\"400\",\"cart_quantity_font_size\":\"0.75em\",\"cart_quantity_letter_spacing\":\"0em\",\"cart_quantity_line_height\":\"1.9\",\"cart_quantity_font_style\":\"normal\",\"cart_quantity_text_align\":\"none\",\"cart_quantity_text_decoration\":\"none\",\"cart_quantity_text_transform\":\"none\",\"cart_quantity_text_color\":\"rgba(0, 0, 0, 0.35)\",\"cart_quantity_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_quantity_text_shadow_color\":\"transparent\",\"cart_total_bg\":\"transparent\",\"cart_total_font_family\":\"inherit\",\"cart_total_font_weight\":\"400\",\"cart_total_font_size\":\"1em\",\"cart_total_letter_spacing\":\"0em\",\"cart_total_line_height\":\"1\",\"cart_total_font_style\":\"normal\",\"cart_total_text_align\":\"center\",\"cart_total_text_decoration\":\"none\",\"cart_total_text_transform\":\"none\",\"cart_total_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_total_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_total_text_shadow_color\":\"transparent\",\"cart_total_margin\":\"0px\",\"cart_total_padding\":\"0.75em 0em 0.75em 0em\",\"cart_total_border_width\":\"1px 0px 1px 0px\",\"cart_total_border_style\":\"solid\",\"cart_total_border_color\":\"rgba(0, 0, 0, 0.065) transparent rgba(0, 0, 0, 0.065) transparent\",\"cart_total_border_radius\":\"0px\",\"cart_total_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_total_box_shadow_color\":\"transparent\",\"cart_buttons_justify_content\":\"space-between\",\"cart_buttons_bg\":\"transparent\",\"cart_buttons_margin\":\"1em 0em 0em 0em\",\"cart_buttons_padding\":\"0px\",\"cart_buttons_border_width\":\"0px\",\"cart_buttons_border_style\":\"solid\",\"cart_buttons_border_color\":\"transparent\",\"cart_buttons_border_radius\":\"0px\",\"cart_anchor_type\":\"button\",\"cart_anchor_has_template\":false,\"cart_anchor_has_link_control\":false,\"cart_anchor_base_font_size\":\"1em\",\"cart_anchor_width\":\"47.5%\",\"cart_anchor_height\":\"auto\",\"cart_anchor_min_width\":\"0px\",\"cart_anchor_min_height\":\"0px\",\"cart_anchor_max_width\":\"none\",\"cart_anchor_max_height\":\"none\",\"cart_anchor_bg_color\":\"#e82f3a\",\"cart_anchor_bg_color_alt\":\"#cb0c2a\",\"cart_anchor_margin\":\"0em\",\"cart_anchor_padding\":\"0.75em 0.85em 0.75em 0.85em\",\"cart_anchor_border_width\":\"0px 0px 3px 0px\",\"cart_anchor_border_style\":\"none none solid none\",\"cart_anchor_border_color\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_color_alt\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_radius\":\"0.5em\",\"cart_anchor_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"cart_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_text_margin\":\"0px\",\"cart_anchor_primary_font_family\":\"inherit\",\"cart_anchor_primary_font_weight\":\"400\",\"cart_anchor_primary_font_size\":\"1em\",\"cart_anchor_primary_letter_spacing\":\"0em\",\"cart_anchor_primary_line_height\":\"1\",\"cart_anchor_primary_font_style\":\"normal\",\"cart_anchor_primary_text_align\":\"center\",\"cart_anchor_primary_text_decoration\":\"none\",\"cart_anchor_primary_text_transform\":\"none\",\"cart_anchor_primary_text_color\":\"white\",\"cart_anchor_primary_text_color_alt\":\"white\",\"cart_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_anchor_primary_text_shadow_color\":\"transparent\",\"cart_anchor_primary_text_shadow_color_alt\":\"transparent\",\"cart_anchor_text\":\"1\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(140,62,'_cs_template_identifier','element|tp-wc-cart-off-canvas'),
(141,62,'_cs_template_data','{\"atts\":{\"_type\":\"tp-wc-cart-off-canvas\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"icon\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":true,\"toggle_anchor_graphic_icon_font_size\":\"1.25em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"shopping-cart\",\"toggle_anchor_graphic_icon_alt\":\"cart-arrow-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"off_canvas_base_font_size\":\"16px\",\"off_canvas_location\":\"right\",\"off_canvas_close_font_size\":\"1.5em\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_max_width\":\"400px\",\"off_canvas_close_color\":\"rgba(0, 0, 0, 0.35)\",\"off_canvas_close_color_alt\":\"rgba(0, 0, 0, 0.65)\",\"off_canvas_content_bg_color\":\"#ffffff\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"off_canvas_content_border_width\":\"0px\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_border_color\":\"transparent\",\"off_canvas_content_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"off_canvas_content_box_shadow_color\":\"rgba(0, 0, 0, 0.5)\",\"cart_title\":\"Your Items\",\"cart_order_items\":\"1\",\"cart_order_total\":\"2\",\"cart_order_buttons\":\"3\",\"cart_title_font_family\":\"inherit\",\"cart_title_font_weight\":\"700\",\"cart_title_font_size\":\"2em\",\"cart_title_letter_spacing\":\"-0.035em\",\"cart_title_line_height\":\"1.1\",\"cart_title_font_style\":\"normal\",\"cart_title_text_align\":\"none\",\"cart_title_text_decoration\":\"none\",\"cart_title_text_transform\":\"none\",\"cart_title_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_title_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_title_text_shadow_color\":\"transparent\",\"cart_title_margin\":\"0em 0em 0.35em 0em\",\"cart_items_display_remove\":true,\"cart_items_content_spacing\":\"1em\",\"cart_items_bg\":\"transparent\",\"cart_items_bg_alt\":\"transparent\",\"cart_items_margin\":\"0px\",\"cart_items_padding\":\"1em 0em 1em 0em\",\"cart_items_border_width\":\"1px 0px 0px 0px\",\"cart_items_border_style\":\"solid\",\"cart_items_border_color\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_color_alt\":\"rgba(0, 0, 0, 0.065) transparent transparent transparent\",\"cart_items_border_radius\":\"0px\",\"cart_items_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_items_box_shadow_color\":\"transparent\",\"cart_items_box_shadow_color_alt\":\"transparent\",\"cart_thumbs_width\":\"70px\",\"cart_thumbs_border_radius\":\"0.5em\",\"cart_thumbs_box_shadow_dimensions\":\"0em 0.15em 1em 0em\",\"cart_thumbs_box_shadow_color\":\"rgba(0, 0, 0, 0.05)\",\"cart_links_font_family\":\"inherit\",\"cart_links_font_weight\":\"400\",\"cart_links_font_size\":\"1em\",\"cart_links_letter_spacing\":\"0em\",\"cart_links_line_height\":\"1.4\",\"cart_links_font_style\":\"normal\",\"cart_links_text_align\":\"none\",\"cart_links_text_decoration\":\"none\",\"cart_links_text_transform\":\"none\",\"cart_links_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_links_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"cart_links_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_links_text_shadow_color\":\"transparent\",\"cart_links_text_shadow_color_alt\":\"transparent\",\"cart_quantity_font_family\":\"inherit\",\"cart_quantity_font_weight\":\"400\",\"cart_quantity_font_size\":\"0.75em\",\"cart_quantity_letter_spacing\":\"0em\",\"cart_quantity_line_height\":\"1.9\",\"cart_quantity_font_style\":\"normal\",\"cart_quantity_text_align\":\"none\",\"cart_quantity_text_decoration\":\"none\",\"cart_quantity_text_transform\":\"none\",\"cart_quantity_text_color\":\"rgba(0, 0, 0, 0.35)\",\"cart_quantity_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_quantity_text_shadow_color\":\"transparent\",\"cart_total_bg\":\"transparent\",\"cart_total_font_family\":\"inherit\",\"cart_total_font_weight\":\"400\",\"cart_total_font_size\":\"1em\",\"cart_total_letter_spacing\":\"0em\",\"cart_total_line_height\":\"1\",\"cart_total_font_style\":\"normal\",\"cart_total_text_align\":\"center\",\"cart_total_text_decoration\":\"none\",\"cart_total_text_transform\":\"none\",\"cart_total_text_color\":\"rgba(0, 0, 0, 0.65)\",\"cart_total_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_total_text_shadow_color\":\"transparent\",\"cart_total_margin\":\"0px\",\"cart_total_padding\":\"0.75em 0em 0.75em 0em\",\"cart_total_border_width\":\"1px 0px 1px 0px\",\"cart_total_border_style\":\"solid\",\"cart_total_border_color\":\"rgba(0, 0, 0, 0.065) transparent rgba(0, 0, 0, 0.065) transparent\",\"cart_total_border_radius\":\"0px\",\"cart_total_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"cart_total_box_shadow_color\":\"transparent\",\"cart_buttons_justify_content\":\"space-between\",\"cart_buttons_bg\":\"transparent\",\"cart_buttons_margin\":\"1em 0em 0em 0em\",\"cart_buttons_padding\":\"0px\",\"cart_buttons_border_width\":\"0px\",\"cart_buttons_border_style\":\"solid\",\"cart_buttons_border_color\":\"transparent\",\"cart_buttons_border_radius\":\"0px\",\"cart_anchor_type\":\"button\",\"cart_anchor_has_template\":false,\"cart_anchor_has_link_control\":false,\"cart_anchor_base_font_size\":\"1em\",\"cart_anchor_width\":\"47.5%\",\"cart_anchor_height\":\"auto\",\"cart_anchor_min_width\":\"0px\",\"cart_anchor_min_height\":\"0px\",\"cart_anchor_max_width\":\"none\",\"cart_anchor_max_height\":\"none\",\"cart_anchor_bg_color\":\"#e82f3a\",\"cart_anchor_bg_color_alt\":\"#cb0c2a\",\"cart_anchor_margin\":\"0em\",\"cart_anchor_padding\":\"0.75em 0.85em 0.75em 0.85em\",\"cart_anchor_border_width\":\"0px 0px 3px 0px\",\"cart_anchor_border_style\":\"none none solid none\",\"cart_anchor_border_color\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_color_alt\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"cart_anchor_border_radius\":\"0.5em\",\"cart_anchor_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"cart_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"cart_anchor_text_margin\":\"0px\",\"cart_anchor_primary_font_family\":\"inherit\",\"cart_anchor_primary_font_weight\":\"400\",\"cart_anchor_primary_font_size\":\"1em\",\"cart_anchor_primary_letter_spacing\":\"0em\",\"cart_anchor_primary_line_height\":\"1\",\"cart_anchor_primary_font_style\":\"normal\",\"cart_anchor_primary_text_align\":\"center\",\"cart_anchor_primary_text_decoration\":\"none\",\"cart_anchor_primary_text_transform\":\"none\",\"cart_anchor_primary_text_color\":\"white\",\"cart_anchor_primary_text_color_alt\":\"white\",\"cart_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"cart_anchor_primary_text_shadow_color\":\"transparent\",\"cart_anchor_primary_text_shadow_color_alt\":\"transparent\",\"cart_anchor_text\":\"1\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(142,63,'_cs_template_identifier','element|content-area-dropdown'),
(143,63,'_cs_template_data','{\"atts\":{\"_type\":\"content-area-dropdown\",\"dropdown_content\":\"<div style=\\\"padding: 25px; line-height: 1.4; text-align: center;\\\">Add any HTML or custom content here.</div>\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"hsla(0, 0%, 0%, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"dropdown_base_font_size\":\"16px\",\"dropdown_width\":\"300px\",\"dropdown_bg_color\":\"#ffffff\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"2em\",\"dropdown_border_width\":\"0px\",\"dropdown_border_style\":\"none\",\"dropdown_border_color\":\"transparent\",\"dropdown_border_radius\":\"0em\",\"dropdown_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"dropdown_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(144,64,'_cs_template_identifier','element|content-area-modal'),
(145,64,'_cs_template_data','{\"atts\":{\"_type\":\"content-area-modal\",\"modal_content\":\"<div style=\\\"padding: 25px; line-height: 1.4; text-align: center;\\\">Add any HTML or custom content here.</div>\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"modal_base_font_size\":\"16px\",\"modal_close_location\":\"top-right\",\"modal_close_font_size\":\"1.5em\",\"modal_close_dimensions\":\"1.5\",\"modal_content_max_width\":\"500px\",\"modal_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"modal_close_color\":\"rgba(255, 255, 255, 0.5)\",\"modal_close_color_alt\":\"#ffffff\",\"modal_content_bg_color\":\"#ffffff\",\"modal_content_padding\":\"1em\",\"modal_content_border_width\":\"0px\",\"modal_content_border_style\":\"none\",\"modal_content_border_color\":\"transparent\",\"modal_content_border_radius\":\"0em\",\"modal_content_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"modal_content_box_shadow_color\":\"rgba(0, 0, 0, 0.5)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(146,65,'_cs_template_identifier','element|content-area-off-canvas'),
(147,65,'_cs_template_data','{\"atts\":{\"_type\":\"content-area-off-canvas\",\"off_canvas_content\":\"<div style=\\\"padding: 25px; line-height: 1.4; text-align: center;\\\">Add any HTML or custom content here.</div>\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"off_canvas_base_font_size\":\"16px\",\"off_canvas_location\":\"right\",\"off_canvas_close_font_size\":\"1.5em\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_max_width\":\"400px\",\"off_canvas_close_color\":\"rgba(0, 0, 0, 0.35)\",\"off_canvas_close_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"off_canvas_content_bg_color\":\"#ffffff\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"off_canvas_content_border_width\":\"0px\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_border_color\":\"transparent\",\"off_canvas_content_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"off_canvas_content_box_shadow_color\":\"rgba(0, 0, 0, 0.5)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(148,66,'_cs_template_identifier','element|counter'),
(149,66,'_cs_template_data','{\"atts\":{\"_type\":\"counter\",\"counter_base_font_size\":\"1em\",\"counter_width\":\"auto\",\"counter_max_width\":\"none\",\"counter_start\":\"0\",\"counter_end\":\"100\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".00\",\"counter_duration\":\"1.5s\",\"counter_before_after\":true,\"counter_before_content\":\"We\'ve Raised\",\"counter_after_content\":\"As of Today\",\"counter_margin\":\"0em\",\"counter_number_margin\":\"0.285em 0px 0.285em 0px\",\"counter_number_font_family\":\"inherit\",\"counter_number_font_weight\":\"400\",\"counter_number_font_size\":\"2.35em\",\"counter_number_letter_spacing\":\"0em\",\"counter_number_line_height\":\"1\",\"counter_number_font_style\":\"normal\",\"counter_number_text_align\":\"none\",\"counter_number_text_decoration\":\"none\",\"counter_number_text_transform\":\"none\",\"counter_number_text_color\":\"rgb(232, 47, 58)\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_number_text_shadow_color\":\"transparent\",\"counter_before_after_font_family\":\"inherit\",\"counter_before_after_font_weight\":\"700\",\"counter_before_after_font_size\":\"0.85em\",\"counter_before_after_letter_spacing\":\"0.35em\",\"counter_before_after_line_height\":\"1\",\"counter_before_after_font_style\":\"normal\",\"counter_before_after_text_align\":\"none\",\"counter_before_after_text_decoration\":\"none\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_before_after_text_color\":\"hsla(0, 0%, 0%, 0.75)\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(150,67,'_cs_template_identifier','element|headline'),
(151,67,'_cs_template_data','{\"atts\":{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Short and Sweet Headlines are Best!\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1.65em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"-0.035em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 0.75)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"div\",\"text_overflow\":false,\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"We Feel That\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_reverse\":true,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"700\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_letter_spacing\":\"0.35em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"uppercase\",\"text_subheadline_text_color\":\"hsla(0, 0%, 0%, 0.35)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.75em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"2em\",\"text_graphic_icon_height\":\"2em\",\"text_graphic_icon_color\":\"white\",\"text_graphic_icon_bg_color\":\"rgb(232, 47, 58)\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"100em\",\"text_graphic_icon_box_shadow_dimensions\":\"inset 0em 0.05em 0.15em 0em\",\"text_graphic_icon_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"lightbulb-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgb(232, 47, 58)\",\"text_typing_cursor_color\":\"rgb(232, 47, 58)\",\"text_subheadline_tag\":\"span\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(152,68,'_cs_template_identifier','element|image'),
(153,68,'_cs_template_data','{\"atts\":{\"_type\":\"image\",\"image_type\":\"standard\",\"image_src\":\"\",\"image_margin\":\"0px\",\"image_padding\":\"3px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"6px\",\"image_inner_border_radius\":\"3px\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"white\",\"image_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"image_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"image_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"image_retina\":true,\"image_width\":48,\"image_height\":48,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(154,69,'_cs_template_identifier','element|line'),
(155,69,'_cs_template_data','{\"atts\":{\"_type\":\"line\",\"line_direction\":\"horizontal\",\"line_base_font_size\":\"1em\",\"line_width\":\"100%\",\"line_max_width\":\"none\",\"line_height\":\"50px\",\"line_max_height\":\"none\",\"line_size\":\"4px\",\"line_color\":\"hsla(0, 0%, 0%, 0.35)\",\"line_style\":\"double\",\"line_margin\":\"0px\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(156,70,'_cs_template_identifier','element|map'),
(157,70,'_cs_template_data','{\"atts\":{\"_type\":\"map\",\"map_type\":\"embed\",\"map_embed_code\":\"\",\"map_google_api_key\":\"\",\"map_google_lat\":\"40.674\",\"map_google_lng\":\"-73.945\",\"map_google_drag\":true,\"map_google_zoom\":true,\"map_google_zoom_level\":\"12\",\"map_google_styles\":\"\",\"frame_content_type\":\"\",\"frame_content_sizing\":\"aspect-ratio\",\"frame_base_font_size\":\"16px\",\"frame_width\":\"100%\",\"frame_max_width\":\"none\",\"frame_content_aspect_ratio_width\":\"16\",\"frame_content_aspect_ratio_height\":\"9\",\"frame_content_height\":\"350px\",\"frame_bg_color\":\"#ffffff\",\"frame_margin\":\"0em\",\"frame_padding\":\"1em\",\"frame_border_width\":\"0px\",\"frame_border_style\":\"none\",\"frame_border_color\":\"transparent\",\"frame_border_radius\":\"3px\",\"frame_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"frame_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(158,71,'_cs_template_identifier','element|__multi__'),
(159,71,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_order\":0,\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"$el .menu-item-title .x-text-content-text-primary > span {\\n  float: right;\\n  font-weight: 700;\\n}\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Main menu.\",\"text_width\":\"auto\",\"text_max_width\":\"10em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Welcome to our restaurant! We\'re excited that you have chosen to dine with us today. Take a moment to look through our menu and see what looks tasty!\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Bison Burger <span>$9</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Burrito <span>$8</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Soft Taco <span>$6</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Texas Taco <span>$8</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Cheese Burger <span>$7</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Veggie Burger <span>$7</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#f5f5f5\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Featured dish.\",\"text_width\":\"auto\",\"text_max_width\":\"12em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px auto 40px auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/1160x600.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"3px\",\"image_inner_border_radius\":\"2px\",\"image_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_retina\":true,\"image_width\":1160,\"image_height\":600,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"counter\",\"_order\":0,\"counter_base_font_size\":\"1em\",\"counter_width\":\"auto\",\"counter_max_width\":\"none\",\"counter_start\":\"0\",\"counter_end\":\"500\",\"counter_number_prefix_content\":\"\",\"counter_number_suffix_content\":\"\",\"counter_duration\":\"1.5s\",\"counter_before_after\":true,\"counter_before_content\":\"\",\"counter_after_content\":\"Calories\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_font_family\":\"inherit\",\"counter_number_font_weight\":\"700\",\"counter_number_font_size\":\"3em\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_line_height\":\"1\",\"counter_number_font_style\":\"normal\",\"counter_number_text_align\":\"center\",\"counter_number_text_decoration\":\"none\",\"counter_number_text_transform\":\"none\",\"counter_number_text_color\":\"rgba(0, 0, 0, 1)\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_number_text_shadow_color\":\"transparent\",\"counter_before_after_font_family\":\"inherit\",\"counter_before_after_font_weight\":\"400\",\"counter_before_after_font_size\":\"1em\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_line_height\":\"1\",\"counter_before_after_font_style\":\"normal\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_decoration\":\"none\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"counter\",\"counter_base_font_size\":\"1em\",\"counter_width\":\"auto\",\"counter_max_width\":\"none\",\"counter_start\":\"0\",\"counter_end\":\"2\",\"counter_number_prefix_content\":\"\",\"counter_number_suffix_content\":\"\",\"counter_duration\":\"1.5s\",\"counter_before_after\":true,\"counter_before_content\":\"\",\"counter_after_content\":\"Servings\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_font_family\":\"inherit\",\"counter_number_font_weight\":\"700\",\"counter_number_font_size\":\"3em\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_line_height\":\"1\",\"counter_number_font_style\":\"normal\",\"counter_number_text_align\":\"center\",\"counter_number_text_decoration\":\"none\",\"counter_number_text_transform\":\"none\",\"counter_number_text_color\":\"rgba(0, 0, 0, 1)\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_number_text_shadow_color\":\"transparent\",\"counter_before_after_font_family\":\"inherit\",\"counter_before_after_font_weight\":\"400\",\"counter_before_after_font_size\":\"1em\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_line_height\":\"1\",\"counter_before_after_font_style\":\"normal\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_decoration\":\"none\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"counter\",\"counter_base_font_size\":\"1em\",\"counter_width\":\"auto\",\"counter_max_width\":\"none\",\"counter_start\":\"0\",\"counter_end\":\"12\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".99\",\"counter_duration\":\"1.5s\",\"counter_before_after\":true,\"counter_before_content\":\"\",\"counter_after_content\":\"Price\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_font_family\":\"inherit\",\"counter_number_font_weight\":\"700\",\"counter_number_font_size\":\"3em\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_line_height\":\"1\",\"counter_number_font_style\":\"normal\",\"counter_number_text_align\":\"center\",\"counter_number_text_decoration\":\"none\",\"counter_number_text_transform\":\"none\",\"counter_number_text_color\":\"rgba(0, 0, 0, 1)\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_number_text_shadow_color\":\"transparent\",\"counter_before_after_font_family\":\"inherit\",\"counter_before_after_font_weight\":\"400\",\"counter_before_after_font_size\":\"1em\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_line_height\":\"1\",\"counter_before_after_font_style\":\"normal\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_decoration\":\"none\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"$el .menu-item-title .x-text-content-text-primary > span {\\n  float: right;\\n  font-weight: 700;\\n}\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"More items.\",\"text_width\":\"auto\",\"text_max_width\":\"10em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Bison Burger <span>$9</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Burrito <span>$8</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Soft Taco <span>$6</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Texas Taco <span>$8</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Cheese Burger <span>$7</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Veggie Burger <span>$7</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"30px 0px 0px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"calc(0.5vw + 24px)\",\"text_line_height\":\"1.2\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"black\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.6\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"menu-item-title\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}}]}'),
(160,72,'_cs_template_identifier','element|nav-collapsed'),
(161,72,'_cs_template_data','{\"atts\":{\"_type\":\"nav-collapsed\",\"menu_type\":\"collapsed\",\"menu\":\"sample:default\",\"menu_base_font_size\":\"1em\",\"menu_margin\":\"0px\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"off_canvas_base_font_size\":\"16px\",\"off_canvas_location\":\"right\",\"off_canvas_close_font_size\":\"1.5em\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_max_width\":\"400px\",\"off_canvas_close_color\":\"rgba(0, 0, 0, 0.35)\",\"off_canvas_close_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"off_canvas_content_bg_color\":\"#ffffff\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"off_canvas_content_border_width\":\"0px\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_border_color\":\"transparent\",\"off_canvas_content_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"off_canvas_content_box_shadow_color\":\"rgba(0, 0, 0, 0.5)\",\"anchor_type\":\"menu-item\",\"anchor_has_template\":true,\"anchor_has_link_control\":false,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"white\",\"anchor_bg_color_alt\":\"white\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.75em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px auto 4px 4px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.5em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"4px\",\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":true,\"anchor_secondary_particle\":true,\"anchor_primary_particle_location\":\"c_l\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-x\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_particle_transform_origin\":\"0% 50%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"100px\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.04)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"c_l\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-x\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"0% 50%\",\"anchor_secondary_particle_width\":\"3px\",\"anchor_secondary_particle_height\":\"100%\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"#e82f3a\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"on\",\"anchor_text_secondary_content\":\"on\",\"anchor_sub_indicator\":true,\"anchor_sub_indicator_font_size\":\"1em\",\"anchor_sub_indicator_width\":\"auto\",\"anchor_sub_indicator_height\":\"auto\",\"anchor_sub_indicator_icon\":\"angle-down\",\"anchor_sub_indicator_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_margin\":\"4px\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_text_shadow_color\":\"transparent\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_type\":\"menu-item\",\"sub_anchor_has_template\":true,\"sub_anchor_has_link_control\":false,\"sub_anchor_base_font_size\":\"1em\",\"sub_anchor_width\":\"auto\",\"sub_anchor_height\":\"auto\",\"sub_anchor_min_width\":\"0px\",\"sub_anchor_min_height\":\"0px\",\"sub_anchor_max_width\":\"none\",\"sub_anchor_max_height\":\"none\",\"sub_anchor_bg_color\":\"transparent\",\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"0.75em\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_color\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_box_shadow_color\":\"transparent\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_primary_font_family\":\"inherit\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_font_size\":\"0.75em\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_line_height\":\"1\",\"sub_anchor_primary_font_style\":\"normal\",\"sub_anchor_primary_text_align\":\"none\",\"sub_anchor_primary_text_decoration\":\"none\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_shadow_color\":\"transparent\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_direction\":\"row\",\"sub_anchor_flex_wrap\":false,\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_flex_align\":\"center\",\"sub_anchor_text\":true,\"sub_anchor_text_overflow\":false,\"sub_anchor_text_reverse\":false,\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_secondary_font_family\":\"inherit\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_font_size\":\"0.75em\",\"sub_anchor_secondary_letter_spacing\":\"0em\",\"sub_anchor_secondary_line_height\":\"1\",\"sub_anchor_secondary_font_style\":\"normal\",\"sub_anchor_secondary_text_align\":\"none\",\"sub_anchor_secondary_text_decoration\":\"none\",\"sub_anchor_secondary_text_transform\":\"none\",\"sub_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_text_shadow_color\":\"transparent\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic\":false,\"sub_anchor_graphic_type\":\"none\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_graphic_icon_alt_enable\":false,\"sub_anchor_graphic_icon_font_size\":\"1.25em\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_image_retina\":true,\"sub_anchor_graphic_image_alt_enable\":false,\"sub_anchor_text_interaction\":\"none\",\"sub_anchor_graphic_interaction\":\"none\",\"sub_anchor_primary_particle\":true,\"sub_anchor_secondary_particle\":false,\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_placement\":\"inside\",\"sub_anchor_primary_particle_scale\":\"scale-x_y\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_transform_origin\":\"50% 50%\",\"sub_anchor_primary_particle_width\":\"6px\",\"sub_anchor_primary_particle_height\":\"6px\",\"sub_anchor_primary_particle_border_radius\":\"100em\",\"sub_anchor_primary_particle_color\":\"#e82f3a\",\"sub_anchor_primary_particle_style\":\"\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_placement\":\"inside\",\"sub_anchor_secondary_particle_scale\":\"scale-x_y\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"sub_anchor_secondary_particle_width\":\"6px\",\"sub_anchor_secondary_particle_height\":\"6px\",\"sub_anchor_secondary_particle_border_radius\":\"100em\",\"sub_anchor_secondary_particle_color\":\"#e82f3a\",\"sub_anchor_secondary_particle_style\":\"\",\"sub_anchor_text_primary_content\":\"on\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_sub_indicator\":false,\"sub_anchor_sub_indicator_font_size\":\"1em\",\"sub_anchor_sub_indicator_width\":\"auto\",\"sub_anchor_sub_indicator_height\":\"auto\",\"sub_anchor_sub_indicator_icon\":\"angle-down\",\"sub_anchor_sub_indicator_color\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"sub_anchor_sub_indicator_margin\":\"4px\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_text_shadow_color\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":true,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_has_alt\":true,\"sub_anchor_graphic_has_interactions\":true,\"sub_anchor_graphic_has_sourced_content\":true,\"sub_anchor_graphic_has_toggle\":false,\"sub_anchor_graphic_icon_bg_color\":\"transparent\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_color\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"sub_anchor_graphic_image_max_width\":\"none\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"legacy_region_detect\":true}}'),
(162,73,'_cs_template_identifier','element|nav-dropdown'),
(163,73,'_cs_template_data','{\"atts\":{\"_type\":\"nav-dropdown\",\"menu_type\":\"dropdown\",\"menu\":\"sample:default\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"dropdown_base_font_size\":\"12px\",\"dropdown_width\":\"18em\",\"dropdown_bg_color\":\"#252525\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_border_width\":\"0px\",\"dropdown_border_style\":\"none\",\"dropdown_border_color\":\"transparent\",\"dropdown_border_radius\":\"0em\",\"dropdown_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"dropdown_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"anchor_type\":\"menu-item\",\"anchor_has_template\":true,\"anchor_has_link_control\":false,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"1.25em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px auto 4px 4px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0.125em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_primary_text_color\":\"white\",\"anchor_primary_text_color_alt\":\"white\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"flex-start\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.5em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"1em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"normal\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":true,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"4px\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_font_size\":\"1.5em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":false,\"anchor_secondary_particle\":false,\"anchor_primary_particle_location\":\"c_l\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-x\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_particle_transform_origin\":\"0% 50%\",\"anchor_primary_particle_width\":\"3px\",\"anchor_primary_particle_height\":\"100%\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"#e82f3a\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"c_l\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-x\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"0% 50%\",\"anchor_secondary_particle_width\":\"3px\",\"anchor_secondary_particle_height\":\"100%\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"#e82f3a\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"on\",\"anchor_text_secondary_content\":\"on\",\"anchor_sub_indicator\":true,\"anchor_sub_indicator_font_size\":\"1.5em\",\"anchor_sub_indicator_width\":\"auto\",\"anchor_sub_indicator_height\":\"auto\",\"anchor_sub_indicator_icon\":\"angle-down\",\"anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_text_shadow_color\":\"transparent\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":true,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(164,74,'_cs_template_identifier','element|nav-inline'),
(165,74,'_cs_template_data','{\"atts\":{\"_type\":\"nav-inline\",\"menu_type\":\"inline\",\"menu\":\"sample:default\",\"menu_base_font_size\":\"1em\",\"menu_margin\":\"0px\",\"menu_align_self\":\"stretch\",\"menu_flex\":\"0 1 auto\",\"menu_row_flex_direction\":\"row\",\"menu_row_flex_wrap\":false,\"menu_row_flex_justify\":\"space-around\",\"menu_row_flex_align\":\"stretch\",\"menu_col_flex_direction\":\"column\",\"menu_col_flex_wrap\":false,\"menu_col_flex_justify\":\"space-around\",\"menu_col_flex_align\":\"stretch\",\"menu_items_flex\":\"0 1 auto\",\"anchor_type\":\"menu-item\",\"anchor_has_template\":true,\"anchor_has_link_control\":false,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.5em 0.75em 0.5em 0.75em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.35em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":true,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"4px\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":true,\"anchor_secondary_particle\":false,\"anchor_primary_particle_location\":\"t_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-y\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_transform_origin\":\"50% 0%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"3px\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"#e82f3a\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"t_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-y\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"50% 0%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"3px\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"#e82f3a\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"on\",\"anchor_text_secondary_content\":\"on\",\"anchor_sub_indicator\":true,\"anchor_sub_indicator_font_size\":\"1em\",\"anchor_sub_indicator_width\":\"auto\",\"anchor_sub_indicator_height\":\"auto\",\"anchor_sub_indicator_icon\":\"angle-down\",\"anchor_sub_indicator_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_margin\":\"0px\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_text_shadow_color\":\"transparent\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"dropdown_base_font_size\":\"12px\",\"dropdown_width\":\"18em\",\"dropdown_bg_color\":\"#252525\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_border_width\":\"0px\",\"dropdown_border_style\":\"none\",\"dropdown_border_color\":\"transparent\",\"dropdown_border_radius\":\"0em\",\"dropdown_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"dropdown_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"sub_anchor_type\":\"menu-item\",\"sub_anchor_has_template\":true,\"sub_anchor_has_link_control\":false,\"sub_anchor_base_font_size\":\"1em\",\"sub_anchor_width\":\"auto\",\"sub_anchor_height\":\"auto\",\"sub_anchor_min_width\":\"0px\",\"sub_anchor_min_height\":\"0px\",\"sub_anchor_max_width\":\"none\",\"sub_anchor_max_height\":\"none\",\"sub_anchor_bg_color\":\"transparent\",\"sub_anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"1.25em\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_color\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_box_shadow_color\":\"transparent\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_primary_font_family\":\"inherit\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_font_size\":\"1em\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_line_height\":\"1\",\"sub_anchor_primary_font_style\":\"normal\",\"sub_anchor_primary_text_align\":\"none\",\"sub_anchor_primary_text_decoration\":\"none\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_primary_text_color\":\"white\",\"sub_anchor_primary_text_color_alt\":\"white\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_shadow_color\":\"transparent\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_direction\":\"row\",\"sub_anchor_flex_wrap\":false,\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_flex_align\":\"center\",\"sub_anchor_text\":true,\"sub_anchor_text_overflow\":false,\"sub_anchor_text_reverse\":false,\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_secondary_font_family\":\"inherit\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_font_size\":\"1em\",\"sub_anchor_secondary_letter_spacing\":\"0em\",\"sub_anchor_secondary_line_height\":\"1\",\"sub_anchor_secondary_font_style\":\"normal\",\"sub_anchor_secondary_text_align\":\"none\",\"sub_anchor_secondary_text_decoration\":\"none\",\"sub_anchor_secondary_text_transform\":\"none\",\"sub_anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_text_shadow_color\":\"transparent\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic\":true,\"sub_anchor_graphic_type\":\"icon\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_font_size\":\"1.5em\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_image_retina\":true,\"sub_anchor_graphic_image_alt_enable\":false,\"sub_anchor_text_interaction\":\"none\",\"sub_anchor_graphic_interaction\":\"none\",\"sub_anchor_primary_particle\":false,\"sub_anchor_secondary_particle\":false,\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_placement\":\"inside\",\"sub_anchor_primary_particle_scale\":\"scale-x\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_primary_particle_width\":\"3px\",\"sub_anchor_primary_particle_height\":\"100%\",\"sub_anchor_primary_particle_border_radius\":\"0px\",\"sub_anchor_primary_particle_color\":\"#e82f3a\",\"sub_anchor_primary_particle_style\":\"\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_placement\":\"inside\",\"sub_anchor_secondary_particle_scale\":\"scale-x\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_secondary_particle_width\":\"3px\",\"sub_anchor_secondary_particle_height\":\"100%\",\"sub_anchor_secondary_particle_border_radius\":\"0px\",\"sub_anchor_secondary_particle_color\":\"#e82f3a\",\"sub_anchor_secondary_particle_style\":\"\",\"sub_anchor_text_primary_content\":\"on\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_sub_indicator\":true,\"sub_anchor_sub_indicator_font_size\":\"1.5em\",\"sub_anchor_sub_indicator_width\":\"auto\",\"sub_anchor_sub_indicator_height\":\"auto\",\"sub_anchor_sub_indicator_icon\":\"angle-down\",\"sub_anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_text_shadow_color\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":true,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_has_alt\":true,\"sub_anchor_graphic_has_interactions\":true,\"sub_anchor_graphic_has_sourced_content\":true,\"sub_anchor_graphic_has_toggle\":false,\"sub_anchor_graphic_icon_bg_color\":\"transparent\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_color\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"sub_anchor_graphic_image_max_width\":\"none\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(166,75,'_cs_template_identifier','element|nav-modal'),
(167,75,'_cs_template_data','{\"atts\":{\"_type\":\"nav-modal\",\"menu_type\":\"modal\",\"menu\":\"sample:default\",\"menu_base_font_size\":\"1em\",\"menu_margin\":\"0px\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"toggle\",\"toggle_anchor_graphic_margin\":\"4px\",\"toggle_anchor_graphic_icon_alt_enable\":false,\"toggle_anchor_graphic_icon_font_size\":\"1.75em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"angle-down\",\"toggle_anchor_graphic_icon_alt\":\"angle-down\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"modal_base_font_size\":\"calc(1.25vw + 12px)\",\"modal_close_location\":\"top-right\",\"modal_close_font_size\":\"1.5em\",\"modal_close_dimensions\":\"1.5\",\"modal_content_max_width\":\"16em\",\"modal_bg_color\":\"rgba(255, 255, 255, 0.95)\",\"modal_close_color\":\"rgba(0, 0, 0, 0.35)\",\"modal_close_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"modal_content_bg_color\":\"transparent\",\"modal_content_padding\":\"0em\",\"modal_content_border_width\":\"0px\",\"modal_content_border_style\":\"none\",\"modal_content_border_color\":\"transparent\",\"modal_content_border_radius\":\"0em\",\"modal_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"modal_content_box_shadow_color\":\"transparent\",\"anchor_type\":\"menu-item\",\"anchor_has_template\":true,\"anchor_has_link_control\":false,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_margin\":\"0em auto 0em auto\",\"anchor_padding\":\"0.75em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"7px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"center\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.5em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.65em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_text_align\":\"center\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"7px\",\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":true,\"anchor_secondary_particle\":true,\"anchor_primary_particle_location\":\"c_l\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-x\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_transform_origin\":\"0% 50%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"100%\",\"anchor_primary_particle_border_radius\":\"0em\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.04)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"c_l\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-y\",\"anchor_secondary_particle_delay\":\"0s\",\"anchor_secondary_particle_transform_origin\":\"0% 50%\",\"anchor_secondary_particle_width\":\"3px\",\"anchor_secondary_particle_height\":\"100%\",\"anchor_secondary_particle_border_radius\":\"0em\",\"anchor_secondary_particle_color\":\"#e82f3a\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"on\",\"anchor_text_secondary_content\":\"on\",\"anchor_sub_indicator\":false,\"anchor_sub_indicator_font_size\":\"1em\",\"anchor_sub_indicator_width\":\"auto\",\"anchor_sub_indicator_height\":\"auto\",\"anchor_sub_indicator_icon\":\"angle-down\",\"anchor_sub_indicator_color\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"anchor_sub_indicator_margin\":\"7px\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_text_shadow_color\":\"transparent\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":true,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(168,76,'_cs_template_identifier','element|__multi__'),
(169,76,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_order\":0,\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"A plan for everyone.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Three simple ways to get started today.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"plans\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"30px 20px 20px 20px\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"3px\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"$5<span>/mo</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"2.75em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"price\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"List your features out for each price level here\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Some features might be short\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"You can add as few or as many as you wish\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"button\",\"anchor_type\":\"button\",\"anchor_has_template\":true,\"anchor_has_link_control\":true,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"100%\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"rgba(255, 255, 255, 1)\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0.85em 0.575em 0.85em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_text_margin\":\"5px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_primary_text_color_alt\":\"#888888\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_href\":\"#\",\"anchor_info\":false,\"anchor_blank\":false,\"anchor_nofollow\":false,\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_interaction\":\"none\",\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.35em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.75em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"normal\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":false,\"anchor_graphic_has_toggle\":false,\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"5px\",\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_alt_enable\":false,\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_image_src_alt\":\"\",\"anchor_graphic_interaction\":\"none\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_image_src\":\"\",\"anchor_graphic_image_width\":48,\"anchor_graphic_image_height\":48,\"anchor_primary_particle\":false,\"anchor_primary_particle_location\":\"b_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-y\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_particle_transform_origin\":\"100% 100%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"3px\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle\":false,\"anchor_secondary_particle_location\":\"b_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-y\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"100% 100%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"3px\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"Buy Now\",\"anchor_text_secondary_content\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"hsl(0, 0%, 0%)\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"30px 20px 20px 20px\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"3px\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"$9<span>/mo</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"2.75em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"price\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"List your features out for each price level here\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Some features might be short\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"You can add as few or as many as you wish\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"button\",\"anchor_type\":\"button\",\"anchor_has_template\":true,\"anchor_has_link_control\":true,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"100%\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"rgba(255, 255, 255, 1)\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0.85em 0.575em 0.85em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_text_margin\":\"5px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_primary_text_color_alt\":\"#888888\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_href\":\"#\",\"anchor_info\":false,\"anchor_blank\":false,\"anchor_nofollow\":false,\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_interaction\":\"none\",\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.35em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.75em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"normal\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":false,\"anchor_graphic_has_toggle\":false,\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"5px\",\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_alt_enable\":false,\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_image_src_alt\":\"\",\"anchor_graphic_interaction\":\"none\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_image_src\":\"\",\"anchor_graphic_image_width\":48,\"anchor_graphic_image_height\":48,\"anchor_primary_particle\":false,\"anchor_primary_particle_location\":\"b_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-y\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_particle_transform_origin\":\"100% 100%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"3px\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle\":false,\"anchor_secondary_particle_location\":\"b_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-y\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"100% 100%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"3px\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"Buy Now\",\"anchor_text_secondary_content\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"30px 20px 20px 20px\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"3px\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"$15<span>/mo</span>\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"2.75em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"price\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"List your features out for each price level here\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Some features might be short\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"You can add as few or as many as you wish\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"button\",\"anchor_type\":\"button\",\"anchor_has_template\":true,\"anchor_has_link_control\":true,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"100%\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"rgba(255, 255, 255, 1)\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0.85em 0.575em 0.85em\",\"anchor_border_width\":\"0px\",\"anchor_border_style\":\"none\",\"anchor_border_color\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_text_margin\":\"5px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_font_size\":\"1em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"none\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_primary_text_color_alt\":\"#888888\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_href\":\"#\",\"anchor_info\":false,\"anchor_blank\":false,\"anchor_nofollow\":false,\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":true,\"anchor_text_overflow\":false,\"anchor_text_interaction\":\"none\",\"anchor_text_reverse\":false,\"anchor_text_spacing\":\"0.35em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.75em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"normal\",\"anchor_secondary_text_align\":\"none\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(0, 0, 0, 1)\",\"anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":false,\"anchor_graphic_has_toggle\":false,\"anchor_graphic\":false,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"5px\",\"anchor_graphic_icon_font_size\":\"1.25em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_alt_enable\":false,\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_image_src_alt\":\"\",\"anchor_graphic_interaction\":\"none\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_image_src\":\"\",\"anchor_graphic_image_width\":48,\"anchor_graphic_image_height\":48,\"anchor_primary_particle\":false,\"anchor_primary_particle_location\":\"b_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-y\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_particle_transform_origin\":\"100% 100%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"3px\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle\":false,\"anchor_secondary_particle_location\":\"b_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-y\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_transform_origin\":\"100% 100%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"3px\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"rgba(0, 0, 0, 0.75)\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"Buy Now\",\"anchor_text_secondary_content\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"_order\":0,\"text_type\":\"standard\",\"text_content\":\"<p>For any questions regarding our pricing plans above, don\'t hesitate to contact us!</p>\",\"text_width\":\"auto\",\"text_max_width\":\"24em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#f5f5f5\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"More inforamtion.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"center\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":true,\"text_subheadline_content\":\"Answers to some frequently asked questions.\",\"text_subheadline_tag\":\"p\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_border_radius\":\"0px\",\"css\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"accordion\",\"_order\":0,\"accordion_base_font_size\":\"1em\",\"accordion_width\":\"100%\",\"accordion_max_width\":\"none\",\"accordion_grouped\":true,\"accordion_group\":\"\",\"accordion_bg_color\":\"transparent\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"accordion_border_width\":\"0px\",\"accordion_border_style\":\"none\",\"accordion_border_color\":\"transparent\",\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_box_shadow_color\":\"transparent\",\"accordion_item_overflow\":true,\"accordion_item_spacing\":\"15px\",\"accordion_item_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_border_width\":\"0px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_color\":\"transparent\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_header_text_overflow\":false,\"accordion_header_indicator\":true,\"accordion_header_content_spacing\":\"0.5em\",\"accordion_header_content_reverse\":false,\"accordion_header_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_header_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"accordion_header_indicator_type\":\"text\",\"accordion_header_indicator_text\":\"&#x25b8;\",\"accordion_header_indicator_icon\":\"caret-right\",\"accordion_header_indicator_font_size\":\"1em\",\"accordion_header_indicator_width\":\"auto\",\"accordion_header_indicator_height\":\"1em\",\"accordion_header_indicator_rotation_start\":\"0deg\",\"accordion_header_indicator_rotation_end\":\"90deg\",\"accordion_header_indicator_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_indicator_color_alt\":\"rgba(0, 0, 0, 1)\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_padding\":\"15px 20px 15px 20px\",\"accordion_header_border_width\":\"0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_color\":\"transparent\",\"accordion_header_border_color_alt\":\"transparent\",\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_box_shadow_color\":\"transparent\",\"accordion_header_box_shadow_color_alt\":\"transparent\",\"accordion_header_font_family\":\"inherit\",\"accordion_header_font_weight\":\"400\",\"accordion_header_font_size\":\"1em\",\"accordion_header_letter_spacing\":\"0em\",\"accordion_header_line_height\":\"1.3\",\"accordion_header_font_style\":\"normal\",\"accordion_header_text_align\":\"left\",\"accordion_header_text_decoration\":\"none\",\"accordion_header_text_transform\":\"none\",\"accordion_header_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_text_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_header_text_shadow_color\":\"transparent\",\"accordion_header_text_shadow_color_alt\":\"transparent\",\"accordion_content_bg_color\":\"transparent\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_padding\":\"20px 20px 20px 20px\",\"accordion_content_border_width\":\"1px 0 0 0\",\"accordion_content_border_style\":\"solid\",\"accordion_content_border_color\":\"rgba(225, 225, 225, 1) transparent transparent transparent\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_box_shadow_color\":\"transparent\",\"accordion_content_font_family\":\"inherit\",\"accordion_content_font_weight\":\"400\",\"accordion_content_font_size\":\"1em\",\"accordion_content_letter_spacing\":\"0em\",\"accordion_content_line_height\":\"1.6\",\"accordion_content_font_style\":\"normal\",\"accordion_content_text_align\":\"none\",\"accordion_content_text_decoration\":\"none\",\"accordion_content_text_transform\":\"none\",\"accordion_content_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_content_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"What is a FAQ section?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"How do I make one?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"How many questions can I add?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"15px\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"accordion\",\"accordion_base_font_size\":\"1em\",\"accordion_width\":\"100%\",\"accordion_max_width\":\"none\",\"accordion_grouped\":true,\"accordion_group\":\"\",\"accordion_bg_color\":\"transparent\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"accordion_border_width\":\"0px\",\"accordion_border_style\":\"none\",\"accordion_border_color\":\"transparent\",\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_box_shadow_color\":\"transparent\",\"accordion_item_overflow\":true,\"accordion_item_spacing\":\"15px\",\"accordion_item_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_border_width\":\"0px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_color\":\"transparent\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_header_text_overflow\":false,\"accordion_header_indicator\":true,\"accordion_header_content_spacing\":\"0.5em\",\"accordion_header_content_reverse\":false,\"accordion_header_bg_color\":\"rgba(255, 255, 255, 1)\",\"accordion_header_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"accordion_header_indicator_type\":\"text\",\"accordion_header_indicator_text\":\"&#x25b8;\",\"accordion_header_indicator_icon\":\"caret-right\",\"accordion_header_indicator_font_size\":\"1em\",\"accordion_header_indicator_width\":\"auto\",\"accordion_header_indicator_height\":\"1em\",\"accordion_header_indicator_rotation_start\":\"0deg\",\"accordion_header_indicator_rotation_end\":\"90deg\",\"accordion_header_indicator_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_indicator_color_alt\":\"rgba(0, 0, 0, 1)\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_padding\":\"15px 20px 15px 20px\",\"accordion_header_border_width\":\"0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_color\":\"transparent\",\"accordion_header_border_color_alt\":\"transparent\",\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_box_shadow_color\":\"transparent\",\"accordion_header_box_shadow_color_alt\":\"transparent\",\"accordion_header_font_family\":\"inherit\",\"accordion_header_font_weight\":\"400\",\"accordion_header_font_size\":\"1em\",\"accordion_header_letter_spacing\":\"0em\",\"accordion_header_line_height\":\"1.3\",\"accordion_header_font_style\":\"normal\",\"accordion_header_text_align\":\"left\",\"accordion_header_text_decoration\":\"none\",\"accordion_header_text_transform\":\"none\",\"accordion_header_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_header_text_color_alt\":\"rgba(0, 0, 0, 0.5)\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_header_text_shadow_color\":\"transparent\",\"accordion_header_text_shadow_color_alt\":\"transparent\",\"accordion_content_bg_color\":\"transparent\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_padding\":\"20px 20px 20px 20px\",\"accordion_content_border_width\":\"1px 0 0 0\",\"accordion_content_border_style\":\"solid\",\"accordion_content_border_color\":\"rgba(225, 225, 225, 1) transparent transparent transparent\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_box_shadow_color\":\"transparent\",\"accordion_content_font_family\":\"inherit\",\"accordion_content_font_weight\":\"400\",\"accordion_content_font_size\":\"1em\",\"accordion_content_letter_spacing\":\"0em\",\"accordion_content_line_height\":\"1.6\",\"accordion_content_font_style\":\"normal\",\"accordion_content_text_align\":\"none\",\"accordion_content_text_decoration\":\"none\",\"accordion_content_text_transform\":\"none\",\"accordion_content_text_color\":\"rgba(0, 0, 0, 1)\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_content_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"Why are FAQs so cool?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"What makes them so useful?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"accordion-item\",\"accordion_item_starts_open\":false,\"accordion_item_header_content\":\"Why don\'t I use more FAQs?\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}}]}'),
(170,77,'_cs_template_identifier','element|quote'),
(171,77,'_cs_template_data','{\"atts\":{\"_type\":\"quote\",\"quote_content\":\"You are never too old to set another goal or to dream a new dream.\",\"quote_cite_content\":\"C.S. Lewis\",\"quote_base_font_size\":\"1em\",\"quote_width\":\"auto\",\"quote_max_width\":\"none\",\"quote_bg_color\":\"transparent\",\"quote_margin\":\"0em\",\"quote_padding\":\"0em 0em 0em 0em\",\"quote_border_width\":\"0px\",\"quote_border_style\":\"none\",\"quote_border_color\":\"transparent\",\"quote_border_radius\":\"0px 0px 0px 0px\",\"quote_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"quote_box_shadow_color\":\"transparent\",\"quote_text_font_family\":\"inherit\",\"quote_text_font_weight\":\"400\",\"quote_text_font_size\":\"1.5em\",\"quote_text_letter_spacing\":\"0em\",\"quote_text_line_height\":\"1.3\",\"quote_text_font_style\":\"normal\",\"quote_text_text_align\":\"center\",\"quote_text_text_decoration\":\"none\",\"quote_text_text_transform\":\"none\",\"quote_text_text_color\":\"rgba(0, 0, 0, 1)\",\"quote_text_text_shadow_dimensions\":\"0px 0px 0px\",\"quote_text_text_shadow_color\":\"transparent\",\"quote_marks_graphic_direction\":\"row\",\"quote_marks_graphic_opening_align\":\"flex-start\",\"quote_marks_graphic_closing_align\":\"flex-start\",\"quote_marks_opening_graphic_has_alt\":false,\"quote_marks_opening_graphic_has_interactions\":false,\"quote_marks_opening_graphic_has_sourced_content\":false,\"quote_marks_opening_graphic_has_toggle\":false,\"quote_marks_opening_graphic\":true,\"quote_marks_opening_graphic_type\":\"icon\",\"quote_marks_opening_graphic_margin\":\"0em 1em 0em 0em\",\"quote_marks_opening_graphic_icon_font_size\":\"1em\",\"quote_marks_opening_graphic_icon_width\":\"1em\",\"quote_marks_opening_graphic_icon_height\":\"1em\",\"quote_marks_opening_graphic_icon_color\":\"rgb(232, 47, 58)\",\"quote_marks_opening_graphic_icon_bg_color\":\"transparent\",\"quote_marks_opening_graphic_icon_border_width\":\"0px\",\"quote_marks_opening_graphic_icon_border_style\":\"none\",\"quote_marks_opening_graphic_icon_border_color\":\"transparent\",\"quote_marks_opening_graphic_icon_border_color_alt\":\"transparent\",\"quote_marks_opening_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"quote_marks_opening_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"quote_marks_opening_graphic_icon_box_shadow_color\":\"transparent\",\"quote_marks_opening_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"quote_marks_opening_graphic_icon_text_shadow_color\":\"transparent\",\"quote_marks_opening_graphic_image_max_width\":\"none\",\"quote_marks_opening_graphic_image_retina\":true,\"quote_marks_opening_graphic_icon\":\"quote-left\",\"quote_marks_opening_graphic_image_src\":\"\",\"quote_marks_opening_graphic_image_width\":48,\"quote_marks_opening_graphic_image_height\":48,\"quote_marks_closing_graphic_has_alt\":false,\"quote_marks_closing_graphic_has_interactions\":false,\"quote_marks_closing_graphic_has_sourced_content\":false,\"quote_marks_closing_graphic_has_toggle\":false,\"quote_marks_closing_graphic\":true,\"quote_marks_closing_graphic_type\":\"icon\",\"quote_marks_closing_graphic_margin\":\"0em 0em 0em 1em\",\"quote_marks_closing_graphic_icon_font_size\":\"1em\",\"quote_marks_closing_graphic_icon_width\":\"1em\",\"quote_marks_closing_graphic_icon_height\":\"1em\",\"quote_marks_closing_graphic_icon_color\":\"rgb(232, 47, 58)\",\"quote_marks_closing_graphic_icon_bg_color\":\"transparent\",\"quote_marks_closing_graphic_icon_border_width\":\"0px\",\"quote_marks_closing_graphic_icon_border_style\":\"none\",\"quote_marks_closing_graphic_icon_border_color\":\"transparent\",\"quote_marks_closing_graphic_icon_border_color_alt\":\"transparent\",\"quote_marks_closing_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"quote_marks_closing_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"quote_marks_closing_graphic_icon_box_shadow_color\":\"transparent\",\"quote_marks_closing_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"quote_marks_closing_graphic_icon_text_shadow_color\":\"transparent\",\"quote_marks_closing_graphic_image_max_width\":\"none\",\"quote_marks_closing_graphic_image_retina\":true,\"quote_marks_closing_graphic_icon\":\"quote-right\",\"quote_marks_closing_graphic_image_src\":\"\",\"quote_marks_closing_graphic_image_width\":48,\"quote_marks_closing_graphic_image_height\":48,\"quote_cite_position\":\"after\",\"quote_cite_bg_color\":\"transparent\",\"quote_cite_flex_direction\":\"row\",\"quote_cite_flex_wrap\":false,\"quote_cite_flex_justify\":\"center\",\"quote_cite_flex_align\":\"center\",\"quote_cite_margin\":\"1em 0em 0em 0em\",\"quote_cite_padding\":\"0em 0em 0em 0em\",\"quote_cite_border_width\":\"0px\",\"quote_cite_border_style\":\"none\",\"quote_cite_border_color\":\"transparent\",\"quote_cite_border_radius\":\"0px 0px 0px 0px\",\"quote_cite_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"quote_cite_box_shadow_color\":\"transparent\",\"quote_cite_font_family\":\"inherit\",\"quote_cite_font_weight\":\"700\",\"quote_cite_font_size\":\"0.85em\",\"quote_cite_letter_spacing\":\"0.25em\",\"quote_cite_line_height\":\"1.2\",\"quote_cite_font_style\":\"normal\",\"quote_cite_text_align\":\"center\",\"quote_cite_text_decoration\":\"none\",\"quote_cite_text_transform\":\"uppercase\",\"quote_cite_text_color\":\"rgba(0, 0, 0, 1)\",\"quote_cite_text_shadow_dimensions\":\"0px 0px 0px\",\"quote_cite_text_shadow_color\":\"transparent\",\"quote_cite_graphic_has_alt\":false,\"quote_cite_graphic_has_interactions\":false,\"quote_cite_graphic_has_sourced_content\":false,\"quote_cite_graphic_has_toggle\":false,\"quote_cite_graphic\":false,\"quote_cite_graphic_type\":\"icon\",\"quote_cite_graphic_margin\":\"0em 0.5em 0em 0em\",\"quote_cite_graphic_icon_font_size\":\"1em\",\"quote_cite_graphic_icon_width\":\"1em\",\"quote_cite_graphic_icon_height\":\"1em\",\"quote_cite_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"quote_cite_graphic_icon_bg_color\":\"transparent\",\"quote_cite_graphic_icon_border_width\":\"0px\",\"quote_cite_graphic_icon_border_style\":\"none\",\"quote_cite_graphic_icon_border_color\":\"transparent\",\"quote_cite_graphic_icon_border_color_alt\":\"transparent\",\"quote_cite_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"quote_cite_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"quote_cite_graphic_icon_box_shadow_color\":\"transparent\",\"quote_cite_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"quote_cite_graphic_icon_text_shadow_color\":\"transparent\",\"quote_cite_graphic_image_max_width\":\"none\",\"quote_cite_graphic_image_retina\":true,\"quote_cite_graphic_icon\":\"angle-right\",\"quote_cite_graphic_image_src\":\"\",\"quote_cite_graphic_image_width\":48,\"quote_cite_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(172,78,'_cs_template_identifier','element|__multi__');
INSERT INTO `wp_postmeta` VALUES
(173,78,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_order\":0,\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_border_style\":\"none none solid none\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Introduction\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Introduction\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"line\",\"line_direction\":\"horizontal\",\"line_base_font_size\":\"1em\",\"line_width\":\"50%\",\"line_max_width\":\"14em\",\"line_height\":\"50px\",\"line_max_height\":\"none\",\"line_size\":\"2px\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_style\":\"solid\",\"line_margin\":\"20px auto 20px auto\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#f5f5f5\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Alternating Features\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Summary\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Input your text here! The text element is intended for longform copy that could potentially include multiple paragraphs.\",\"text_width\":\"auto\",\"text_max_width\":\"32em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Highlights\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1.15em\",\"text_tag\":\"h4\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature one\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature two\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature three\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Summary\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Input your text here! The text element is intended for longform copy that could potentially include multiple paragraphs.\",\"text_width\":\"auto\",\"text_max_width\":\"32em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Highlights\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1.15em\",\"text_tag\":\"h4\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature one\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature two\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature three\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"2/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Summary\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Input your text here! The text element is intended for longform copy that could potentially include multiple paragraphs.\",\"text_width\":\"auto\",\"text_max_width\":\"32em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Highlights\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0.15em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"uppercase\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1.15em\",\"text_tag\":\"h4\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature one\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature two\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Feature three\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"p\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"flex-start\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"check-circle\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_border_style\":\"solid none solid none\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Attention Getter\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Look at me! I catch peoples\' attention nicely.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_line_height\":\"1.25\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px auto 0px auto\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_border_style\":\"none none solid none\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Centered Feature\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Feature Section\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"line\",\"line_direction\":\"horizontal\",\"line_base_font_size\":\"1em\",\"line_width\":\"50%\",\"line_max_width\":\"14em\",\"line_height\":\"50px\",\"line_max_height\":\"none\",\"line_size\":\"2px\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_style\":\"solid\",\"line_margin\":\"20px auto 20px auto\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"600px\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"35px 0px 0px 0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#f5f5f5\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Feature Columns\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"More Features\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"line\",\"line_direction\":\"horizontal\",\"line_base_font_size\":\"1em\",\"line_width\":\"50%\",\"line_max_width\":\"14em\",\"line_height\":\"50px\",\"line_max_height\":\"none\",\"line_size\":\"2px\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_style\":\"solid\",\"line_margin\":\"20px auto 20px auto\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"1em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/6\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"4px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"4px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_retina\":true,\"image_width\":300,\"image_height\":300,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_border_style\":\"solid none solid none\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Attention Getter\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_line_height\":\"1.25\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":true,\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_suffix\":\" by my typing skills?\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Dark Feature Columns\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"More Features\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Dark Feature Columns\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Even More Features\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/4\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":500,\"image_height\":500,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_border_style\":\"solid none solid none\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Attention Getter\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_width\":\"auto\",\"text_max_width\":\"31em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_line_height\":\"1.25\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row-reverse\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":true,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"smile-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"#f5f5f5\",\"section_bg_advanced\":false,\"section_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 65px 0px\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_border_style\":\"none none solid none\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Two Column Features\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"_order\":0,\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"gap\",\"gap_direction\":\"vertical\",\"gap_base_font_size\":\"1em\",\"gap_size\":\"2em\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/2\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"image\",\"image_type\":\"standard\",\"image_styled_width\":\"auto\",\"image_styled_max_width\":\"none\",\"image_bg_color\":\"transparent\",\"image_bg_color_alt\":\"transparent\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_margin\":\"2em 0em 0em 0em\",\"image_padding\":\"0px\",\"image_border_width\":\"0px\",\"image_border_style\":\"solid\",\"image_border_color\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_outer_border_radius\":\"0px\",\"image_inner_border_radius\":\"3px\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_box_shadow_color\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_retina\":true,\"image_width\":1600,\"image_height\":800,\"image_link\":false,\"image_href\":\"\",\"image_blank\":false,\"image_nofollow\":false,\"image_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}},{\"_type\":\"section\",\"section_base_font_size\":\"1em\",\"section_z_index\":\"1\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_bg_advanced\":false,\"section_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"section_top_separator\":false,\"section_top_separator_location\":\"top\",\"section_top_separator_type\":\"angle-in\",\"section_top_separator_angle_point\":\"50\",\"section_top_separator_height\":\"50px\",\"section_top_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_bottom_separator\":false,\"section_bottom_separator_location\":\"bottom\",\"section_bottom_separator_type\":\"angle-in\",\"section_bottom_separator_angle_point\":\"50\",\"section_bottom_separator_height\":\"50px\",\"section_bottom_separator_color\":\"rgba(0, 0, 0, 0.75)\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_border_width\":\"0px\",\"section_border_style\":\"none\",\"section_border_color\":\"transparent\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"title\":\"Marginless Columns\",\"css\":\"\",\"_modules\":[{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":true,\"row_marginless_columns\":false,\"row_text_align\":\"center\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"Marginless Columns\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_line_height\":\"1.05\",\"text_letter_spacing\":\"-0.025em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h2\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"line\",\"line_direction\":\"horizontal\",\"line_base_font_size\":\"1em\",\"line_width\":\"50%\",\"line_max_width\":\"14em\",\"line_height\":\"50px\",\"line_max_height\":\"none\",\"line_size\":\"2px\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_style\":\"solid\",\"line_margin\":\"20px auto 20px auto\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_width\":\"auto\",\"text_max_width\":\"40em\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"1/1\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}},{\"_type\":\"row\",\"row_base_font_size\":\"1em\",\"row_z_index\":\"1\",\"row_bg_color\":\"transparent\",\"row_bg_advanced\":false,\"row_inner_container\":false,\"row_marginless_columns\":true,\"row_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"row_margin\":\"55px auto 0px auto\",\"row_padding\":\"0em\",\"row_border_width\":\"0px\",\"row_border_style\":\"none\",\"row_border_color\":\"transparent\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"row_width\":\"auto\",\"row_max_width\":\"none\",\"row_border_radius\":\"0px\",\"css\":\"\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"#f5f5f5\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"calc(2vw + 25px)\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_order\":0,\"text_type\":\"headline\",\"text_content\":\"One\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"#e5e5e5\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"calc(2vw + 25px)\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Two\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":true,\"size\":\"1/3\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"#d5d5d5\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"calc(2vw + 25px)\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_modules\":[{\"_type\":\"headline\",\"text_type\":\"headline\",\"text_content\":\"Three\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"700\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_line_height\":\"1\",\"text_letter_spacing\":\"-0.015em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 1)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_base_font_size\":\"1em\",\"text_tag\":\"h3\",\"text_overflow\":false,\"text_typing\":false,\"text_typing_prefix\":\"Short and \",\"text_typing_content\":\"Sweet\\nClever\\nImpactful\",\"text_typing_suffix\":\" Headlines are Best!\",\"text_typing_speed\":\"50ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_delay\":\"0ms\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_loop\":true,\"text_typing_cursor\":true,\"text_typing_cursor_content\":\"|\",\"text_typing_color\":\"rgba(0, 0, 0, 1)\",\"text_typing_cursor_color\":\"rgba(0, 0, 0, 1)\",\"text_flex_direction\":\"row\",\"text_flex_wrap\":false,\"text_flex_justify\":\"center\",\"text_flex_align\":\"center\",\"text_content_margin\":\"0px\",\"text_subheadline\":false,\"text_subheadline_content\":\"Subheadline space\",\"text_subheadline_tag\":\"span\",\"text_subheadline_spacing\":\"0.35em\",\"text_subheadline_reverse\":false,\"text_subheadline_font_family\":\"inherit\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_font_size\":\"1em\",\"text_subheadline_line_height\":\"1.4\",\"text_subheadline_letter_spacing\":\"0em\",\"text_subheadline_font_style\":\"normal\",\"text_subheadline_text_align\":\"none\",\"text_subheadline_text_decoration\":\"none\",\"text_subheadline_text_transform\":\"none\",\"text_subheadline_text_color\":\"rgba(0, 0, 0, 1)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_subheadline_text_shadow_color\":\"transparent\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_has_sourced_content\":false,\"text_graphic_has_toggle\":false,\"text_graphic\":false,\"text_graphic_type\":\"icon\",\"text_graphic_margin\":\"0em 0.5em 0em 0em\",\"text_graphic_icon_font_size\":\"1.25em\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 1)\",\"text_graphic_icon_bg_color\":\"transparent\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_color\":\"transparent\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_box_shadow_color\":\"transparent\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_text_shadow_color\":\"transparent\",\"text_graphic_image_max_width\":\"none\",\"text_graphic_image_retina\":true,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_image_src\":\"\",\"text_graphic_image_width\":48,\"text_graphic_image_height\":48,\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"_order\":0,\"css\":\"\",\"_bp_base\":\"4_4\"},{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_width\":\"auto\",\"text_max_width\":\"24rem\",\"text_bg_color\":\"transparent\",\"text_margin\":\"1em auto 0em auto\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.6\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":2,\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"},{\"_type\":\"column\",\"_active\":false,\"size\":\"\",\"column_base_font_size\":\"1em\",\"column_fade\":false,\"column_fade_duration\":\"0.5s\",\"column_fade_animation\":\"in\",\"column_fade_animation_offset\":\"50px\",\"column_bg_color\":\"transparent\",\"column_bg_advanced\":false,\"column_text_align\":\"none\",\"bg_lower_type\":\"none\",\"bg_lower_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_lower_image\":\"\",\"bg_lower_image_repeat\":\"no-repeat\",\"bg_lower_image_size\":\"cover\",\"bg_lower_image_position\":\"center\",\"bg_lower_video\":\"\",\"bg_lower_video_poster\":\"\",\"bg_upper_type\":\"none\",\"bg_upper_color\":\"rgba(255, 255, 255, 0.5)\",\"bg_upper_image\":\"\",\"bg_upper_image_repeat\":\"no-repeat\",\"bg_upper_image_size\":\"cover\",\"bg_upper_image_position\":\"center\",\"bg_upper_video\":\"\",\"bg_upper_video_poster\":\"\",\"bg_lower_parallax\":false,\"bg_lower_parallax_size\":\"150%\",\"bg_lower_parallax_direction\":\"v\",\"bg_lower_parallax_reverse\":false,\"bg_upper_parallax\":false,\"bg_upper_parallax_size\":\"150%\",\"bg_upper_parallax_direction\":\"v\",\"bg_upper_parallax_reverse\":false,\"bg_border_radius\":\"inherit\",\"column_padding\":\"0em\",\"column_border_width\":\"0px\",\"column_border_style\":\"none\",\"column_border_color\":\"transparent\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"style\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"column_z_index\":\"1\"}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}],\"_bp_base\":\"4_4\",\"_m\":{\"e\":2}}]}'),
(174,79,'_cs_template_identifier','element|search-dropdown'),
(175,79,'_cs_template_data','{\"atts\":{\"_type\":\"search-dropdown\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"icon\",\"toggle_anchor_graphic_margin\":\"4px 4px 6px 4px\",\"toggle_anchor_graphic_icon_font_size\":\"1em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_icon_alt_enable\":true,\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_graphic_icon_alt\":\"search-plus\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_graphic_icon\":\"search\",\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"dropdown_base_font_size\":\"16px\",\"dropdown_width\":\"300px\",\"dropdown_bg_color\":\"#ffffff\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_border_width\":\"0px\",\"dropdown_border_style\":\"none\",\"dropdown_border_color\":\"transparent\",\"dropdown_border_radius\":\"0em\",\"dropdown_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"dropdown_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"search_type\":\"dropdown\",\"search_placeholder\":\"Search\",\"search_order_input\":\"2\",\"search_order_submit\":\"1\",\"search_order_clear\":\"3\",\"search_base_font_size\":\"1.25em\",\"search_width\":\"100%\",\"search_height\":\"auto\",\"search_max_width\":\"none\",\"search_bg_color\":\"#ffffff\",\"search_bg_color_alt\":\"#ffffff\",\"search_margin\":\"0em\",\"search_border_width\":\"0px\",\"search_border_style\":\"none\",\"search_border_color\":\"transparent\",\"search_border_color_alt\":\"transparent\",\"search_border_radius\":\"0em\",\"search_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_box_shadow_color\":\"transparent\",\"search_box_shadow_color_alt\":\"transparent\",\"search_input_margin\":\"0em\",\"search_input_font_family\":\"inherit\",\"search_input_font_weight\":\"400\",\"search_input_font_size\":\"1em\",\"search_input_letter_spacing\":\"0em\",\"search_input_line_height\":\"1.3\",\"search_input_font_style\":\"normal\",\"search_input_text_align\":\"none\",\"search_input_text_decoration\":\"none\",\"search_input_text_transform\":\"none\",\"search_input_text_color\":\"rgba(0, 0, 0, 0.5)\",\"search_input_text_color_alt\":\"rgba(0, 0, 0, 1)\",\"search_submit_font_size\":\"1em\",\"search_submit_stroke_width\":2,\"search_submit_width\":\"1em\",\"search_submit_height\":\"1em\",\"search_submit_color\":\"black\",\"search_submit_color_alt\":\"rgb(232, 47, 58)\",\"search_submit_bg_color\":\"transparent\",\"search_submit_bg_color_alt\":\"transparent\",\"search_submit_margin\":\"0.9em 0.65em 0.9em 0.9em\",\"search_submit_border_style\":\"none\",\"search_submit_border_width\":\"0px\",\"search_submit_border_color\":\"transparent\",\"search_submit_border_color_alt\":\"transparent\",\"search_submit_border_radius\":\"0em\",\"search_submit_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_submit_box_shadow_color\":\"transparent\",\"search_submit_box_shadow_color_alt\":\"transparent\",\"search_clear_font_size\":\"1em\",\"search_clear_stroke_width\":2,\"search_clear_width\":\"1em\",\"search_clear_height\":\"1em\",\"search_clear_color\":\"hsla(0, 0%, 0%, 0.25)\",\"search_clear_color_alt\":\"rgb(232, 47, 58)\",\"search_clear_bg_color\":\"transparent\",\"search_clear_bg_color_alt\":\"transparent\",\"search_clear_margin\":\"0.9em 0.9em 0.9em 0.65em\",\"search_clear_border_style\":\"none\",\"search_clear_border_width\":\"0px\",\"search_clear_border_color\":\"transparent\",\"search_clear_border_color_alt\":\"transparent\",\"search_clear_border_radius\":\"100em\",\"search_clear_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_clear_box_shadow_color\":\"transparent\",\"search_clear_box_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(176,80,'_cs_template_identifier','element|search-inline'),
(177,80,'_cs_template_data','{\"atts\":{\"_type\":\"search-inline\",\"search_type\":\"inline\",\"search_placeholder\":\"Search\",\"search_order_input\":\"2\",\"search_order_submit\":\"1\",\"search_order_clear\":\"3\",\"search_base_font_size\":\"1em\",\"search_width\":\"250px\",\"search_height\":\"auto\",\"search_max_width\":\"100%\",\"search_bg_color\":\"rgba(0, 0, 0, 0.1)\",\"search_bg_color_alt\":\"#ffffff\",\"search_margin\":\"0em\",\"search_border_width\":\"0px\",\"search_border_style\":\"none\",\"search_border_color\":\"transparent\",\"search_border_color_alt\":\"transparent\",\"search_border_radius\":\"100em\",\"search_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"search_box_shadow_color\":\"transparent\",\"search_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"search_input_margin\":\"0em\",\"search_input_font_family\":\"inherit\",\"search_input_font_weight\":\"400\",\"search_input_font_size\":\"1em\",\"search_input_letter_spacing\":\"0em\",\"search_input_line_height\":\"1.3\",\"search_input_font_style\":\"normal\",\"search_input_text_align\":\"none\",\"search_input_text_decoration\":\"none\",\"search_input_text_transform\":\"none\",\"search_input_text_color\":\"rgba(0, 0, 0, 0.35)\",\"search_input_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"search_submit_font_size\":\"0.85em\",\"search_submit_stroke_width\":2,\"search_submit_width\":\"1.75em\",\"search_submit_height\":\"1.75em\",\"search_submit_color\":\"white\",\"search_submit_color_alt\":\"white\",\"search_submit_bg_color\":\"rgba(0, 0, 0, 0.35)\",\"search_submit_bg_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"search_submit_margin\":\"0.5em\",\"search_submit_border_style\":\"none\",\"search_submit_border_width\":\"0px\",\"search_submit_border_color\":\"transparent\",\"search_submit_border_color_alt\":\"transparent\",\"search_submit_border_radius\":\"100em\",\"search_submit_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_submit_box_shadow_color\":\"transparent\",\"search_submit_box_shadow_color_alt\":\"transparent\",\"search_clear_font_size\":\"0.85em\",\"search_clear_stroke_width\":2,\"search_clear_width\":\"1.75em\",\"search_clear_height\":\"1.75em\",\"search_clear_color\":\"white\",\"search_clear_color_alt\":\"white\",\"search_clear_bg_color\":\"rgba(0, 0, 0, 0.35)\",\"search_clear_bg_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"search_clear_margin\":\"0.5em\",\"search_clear_border_style\":\"none\",\"search_clear_border_width\":\"0px\",\"search_clear_border_color\":\"transparent\",\"search_clear_border_color_alt\":\"transparent\",\"search_clear_border_radius\":\"100em\",\"search_clear_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_clear_box_shadow_color\":\"transparent\",\"search_clear_box_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(178,81,'_cs_template_identifier','element|search-modal'),
(179,81,'_cs_template_data','{\"atts\":{\"_type\":\"search-modal\",\"toggle_anchor_type\":\"toggle\",\"toggle_anchor_has_template\":true,\"toggle_anchor_has_link_control\":false,\"toggle_anchor_base_font_size\":\"1em\",\"toggle_anchor_width\":\"3em\",\"toggle_anchor_height\":\"3em\",\"toggle_anchor_min_width\":\"0px\",\"toggle_anchor_min_height\":\"0px\",\"toggle_anchor_max_width\":\"none\",\"toggle_anchor_max_height\":\"none\",\"toggle_anchor_bg_color\":\"white\",\"toggle_anchor_bg_color_alt\":\"white\",\"toggle_anchor_margin\":\"0em\",\"toggle_anchor_padding\":\"0em\",\"toggle_anchor_border_width\":\"0px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_border_color\":\"transparent\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"100em\",\"toggle_anchor_box_shadow_dimensions\":\"0em 0.25em 1em 0em\",\"toggle_anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.15)\",\"toggle_anchor_text_margin\":\"4px\",\"toggle_anchor_primary_font_family\":\"inherit\",\"toggle_anchor_primary_font_weight\":\"700\",\"toggle_anchor_primary_font_size\":\"1em\",\"toggle_anchor_primary_letter_spacing\":\"0em\",\"toggle_anchor_primary_line_height\":\"1\",\"toggle_anchor_primary_font_style\":\"normal\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_decoration\":\"none\",\"toggle_anchor_primary_text_transform\":\"none\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_primary_text_shadow_color\":\"transparent\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_flex_direction\":\"row\",\"toggle_anchor_flex_wrap\":false,\"toggle_anchor_flex_justify\":\"center\",\"toggle_anchor_flex_align\":\"center\",\"toggle_anchor_text\":false,\"toggle_anchor_text_overflow\":false,\"toggle_anchor_text_reverse\":false,\"toggle_anchor_text_spacing\":\"0.35em\",\"toggle_anchor_secondary_font_family\":\"inherit\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_font_size\":\"0.85em\",\"toggle_anchor_secondary_letter_spacing\":\"0em\",\"toggle_anchor_secondary_line_height\":\"1\",\"toggle_anchor_secondary_font_style\":\"italic\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_decoration\":\"none\",\"toggle_anchor_secondary_text_transform\":\"none\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_text_shadow_color\":\"transparent\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic\":true,\"toggle_anchor_graphic_type\":\"icon\",\"toggle_anchor_graphic_margin\":\"4px 4px 6px 4px\",\"toggle_anchor_graphic_icon_alt_enable\":true,\"toggle_anchor_graphic_icon_font_size\":\"1em\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_text_shadow_color\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_image_retina\":true,\"toggle_anchor_graphic_image_alt_enable\":false,\"toggle_anchor_text_interaction\":\"none\",\"toggle_anchor_graphic_interaction\":\"none\",\"toggle_anchor_primary_particle\":true,\"toggle_anchor_secondary_particle\":true,\"toggle_anchor_primary_particle_location\":\"c_c\",\"toggle_anchor_primary_particle_placement\":\"inside\",\"toggle_anchor_primary_particle_scale\":\"scale-x_y\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_primary_particle_width\":\"100%\",\"toggle_anchor_primary_particle_height\":\"100%\",\"toggle_anchor_primary_particle_border_radius\":\"100em\",\"toggle_anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.07)\",\"toggle_anchor_primary_particle_style\":\"\",\"toggle_anchor_secondary_particle_location\":\"c_c\",\"toggle_anchor_secondary_particle_placement\":\"inside\",\"toggle_anchor_secondary_particle_scale\":\"scale-x_y\",\"toggle_anchor_secondary_particle_delay\":\"0.15s\",\"toggle_anchor_secondary_particle_transform_origin\":\"50% 50%\",\"toggle_anchor_secondary_particle_width\":\"100%\",\"toggle_anchor_secondary_particle_height\":\"100%\",\"toggle_anchor_secondary_particle_border_radius\":\"100em\",\"toggle_anchor_secondary_particle_color\":\"rgb(255, 255, 255)\",\"toggle_anchor_secondary_particle_style\":\"\",\"toggle_anchor_text_primary_content\":\"\",\"toggle_anchor_text_secondary_content\":\"\",\"toggle_anchor_graphic_icon\":\"search\",\"toggle_anchor_graphic_icon_alt\":\"search-plus\",\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_src\":\"\",\"toggle_anchor_graphic_image_src_alt\":\"\",\"toggle_type\":\"burger-1\",\"toggle_burger_size\":\"0.1em\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_grid_size\":\"0.25em\",\"toggle_grid_spacing\":\"1.5em\",\"toggle_more_size\":\"0.25em\",\"toggle_more_spacing\":\"2em\",\"toggle_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"modal_base_font_size\":\"calc(1.5vw + 12px)\",\"modal_close_location\":\"top-right\",\"modal_close_font_size\":\"1.5em\",\"modal_close_dimensions\":\"1.5\",\"modal_content_max_width\":\"32em\",\"modal_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"modal_close_color\":\"rgba(255, 255, 255, 0.5)\",\"modal_close_color_alt\":\"#ffffff\",\"modal_content_bg_color\":\"transparent\",\"modal_content_padding\":\"0em\",\"modal_content_border_width\":\"0px\",\"modal_content_border_style\":\"none\",\"modal_content_border_color\":\"transparent\",\"modal_content_border_radius\":\"0em\",\"modal_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"modal_content_box_shadow_color\":\"transparent\",\"search_type\":\"modal\",\"search_placeholder\":\"Search\",\"search_order_input\":\"2\",\"search_order_submit\":\"1\",\"search_order_clear\":\"3\",\"search_base_font_size\":\"1em\",\"search_width\":\"100%\",\"search_height\":\"auto\",\"search_max_width\":\"none\",\"search_bg_color\":\"rgba(255, 255, 255, 0.05)\",\"search_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"search_margin\":\"0em 0em 1em 0em\",\"search_border_width\":\"0px\",\"search_border_style\":\"none\",\"search_border_color\":\"transparent\",\"search_border_color_alt\":\"transparent\",\"search_border_radius\":\"100em\",\"search_box_shadow_dimensions\":\"0em 0em 0em 0.1em\",\"search_box_shadow_color\":\"transparent\",\"search_box_shadow_color_alt\":\"#e82f3a\",\"search_input_margin\":\"0em\",\"search_input_font_family\":\"inherit\",\"search_input_font_weight\":\"400\",\"search_input_font_size\":\"1em\",\"search_input_letter_spacing\":\"0em\",\"search_input_line_height\":\"1.3\",\"search_input_font_style\":\"normal\",\"search_input_text_align\":\"none\",\"search_input_text_decoration\":\"none\",\"search_input_text_transform\":\"none\",\"search_input_text_color\":\"white\",\"search_input_text_color_alt\":\"white\",\"search_submit_font_size\":\"1em\",\"search_submit_stroke_width\":2,\"search_submit_width\":\"1em\",\"search_submit_height\":\"1em\",\"search_submit_color\":\"white\",\"search_submit_color_alt\":\"white\",\"search_submit_bg_color\":\"transparent\",\"search_submit_bg_color_alt\":\"transparent\",\"search_submit_margin\":\"1em\",\"search_submit_border_style\":\"none\",\"search_submit_border_width\":\"0px\",\"search_submit_border_color\":\"transparent\",\"search_submit_border_color_alt\":\"transparent\",\"search_submit_border_radius\":\"0em\",\"search_submit_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_submit_box_shadow_color\":\"transparent\",\"search_submit_box_shadow_color_alt\":\"transparent\",\"search_clear_font_size\":\"1em\",\"search_clear_stroke_width\":2,\"search_clear_width\":\"1em\",\"search_clear_height\":\"1em\",\"search_clear_color\":\"white\",\"search_clear_color_alt\":\"white\",\"search_clear_bg_color\":\"transparent\",\"search_clear_bg_color_alt\":\"transparent\",\"search_clear_margin\":\"1em\",\"search_clear_border_style\":\"none\",\"search_clear_border_width\":\"0px\",\"search_clear_border_color\":\"transparent\",\"search_clear_border_color_alt\":\"transparent\",\"search_clear_border_radius\":\"0em\",\"search_clear_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"search_clear_box_shadow_color\":\"transparent\",\"search_clear_box_shadow_color_alt\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"toggle_anchor_graphic_has_alt\":true,\"toggle_anchor_graphic_has_interactions\":true,\"toggle_anchor_graphic_has_sourced_content\":false,\"toggle_anchor_graphic_has_toggle\":true,\"toggle_anchor_graphic_icon_bg_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_color\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_box_shadow_color\":\"transparent\",\"toggle_anchor_graphic_image_max_width\":\"none\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(180,82,'_cs_template_identifier','element|social'),
(181,82,'_cs_template_data','{\"atts\":{\"_type\":\"social\",\"anchor_type\":\"button\",\"anchor_has_template\":true,\"anchor_has_link_control\":true,\"anchor_base_font_size\":\"1em\",\"anchor_width\":\"auto\",\"anchor_height\":\"auto\",\"anchor_min_width\":\"0px\",\"anchor_min_height\":\"0px\",\"anchor_max_width\":\"none\",\"anchor_max_height\":\"none\",\"anchor_bg_color\":\"#3b5998\",\"anchor_bg_color_alt\":\"#355088\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.15em 0.25em 0.15em 0.25em\",\"anchor_border_width\":\"0px 0px 3px 0px\",\"anchor_border_style\":\"none none solid none\",\"anchor_border_color\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"anchor_border_color_alt\":\"transparent transparent rgba(0,0,0,0.25) transparent\",\"anchor_border_radius\":\"0.275em\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"anchor_box_shadow_color\":\"rgba(0, 0, 0, 0.25)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.25)\",\"anchor_text_margin\":\"4px\",\"anchor_primary_font_family\":\"inherit\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_font_size\":\"0.85em\",\"anchor_primary_letter_spacing\":\"0em\",\"anchor_primary_line_height\":\"1\",\"anchor_primary_font_style\":\"normal\",\"anchor_primary_text_align\":\"center\",\"anchor_primary_text_decoration\":\"none\",\"anchor_primary_text_transform\":\"none\",\"anchor_primary_text_color\":\"white\",\"anchor_primary_text_color_alt\":\"white\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_shadow_color\":\"transparent\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_href\":\"#\",\"anchor_info\":\"\",\"anchor_blank\":false,\"anchor_nofollow\":false,\"anchor_flex_direction\":\"row\",\"anchor_flex_wrap\":false,\"anchor_flex_justify\":\"center\",\"anchor_flex_align\":\"center\",\"anchor_text\":false,\"anchor_text_overflow\":false,\"anchor_text_reverse\":true,\"anchor_text_spacing\":\"0.25em\",\"anchor_secondary_font_family\":\"inherit\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_font_size\":\"0.65em\",\"anchor_secondary_letter_spacing\":\"0em\",\"anchor_secondary_line_height\":\"1\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_text_align\":\"center\",\"anchor_secondary_text_decoration\":\"none\",\"anchor_secondary_text_transform\":\"none\",\"anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.65)\",\"anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.65)\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_text_shadow_color\":\"transparent\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_graphic\":true,\"anchor_graphic_type\":\"icon\",\"anchor_graphic_margin\":\"4px\",\"anchor_graphic_icon_alt_enable\":false,\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_color\":\"white\",\"anchor_graphic_icon_color_alt\":\"white\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_text_shadow_color\":\"transparent\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_retina\":true,\"anchor_graphic_image_alt_enable\":false,\"anchor_text_interaction\":\"none\",\"anchor_graphic_interaction\":\"none\",\"anchor_primary_particle\":false,\"anchor_secondary_particle\":false,\"anchor_primary_particle_location\":\"c_c\",\"anchor_primary_particle_placement\":\"inside\",\"anchor_primary_particle_scale\":\"scale-x\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_transform_origin\":\"50% 50%\",\"anchor_primary_particle_width\":\"100%\",\"anchor_primary_particle_height\":\"100%\",\"anchor_primary_particle_border_radius\":\"0px\",\"anchor_primary_particle_color\":\"rgba(0, 0, 0, 0.05)\",\"anchor_primary_particle_style\":\"\",\"anchor_secondary_particle_location\":\"c_c\",\"anchor_secondary_particle_placement\":\"inside\",\"anchor_secondary_particle_scale\":\"scale-x\",\"anchor_secondary_particle_delay\":\"0.25s\",\"anchor_secondary_particle_transform_origin\":\"50% 50%\",\"anchor_secondary_particle_width\":\"100%\",\"anchor_secondary_particle_height\":\"100%\",\"anchor_secondary_particle_border_radius\":\"0px\",\"anchor_secondary_particle_color\":\"rgba(0, 0, 0, 0.05)\",\"anchor_secondary_particle_style\":\"\",\"anchor_text_primary_content\":\"Facebook\",\"anchor_text_secondary_content\":\"Like Us On\",\"anchor_graphic_icon\":\"facebook-official\",\"anchor_graphic_icon_alt\":\"facebook-official\",\"anchor_graphic_image_width\":48,\"anchor_graphic_image_height\":48,\"anchor_graphic_image_src\":\"\",\"anchor_graphic_image_src_alt\":\"\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"anchor_graphic_has_alt\":true,\"anchor_graphic_has_interactions\":true,\"anchor_graphic_has_sourced_content\":false,\"anchor_graphic_has_toggle\":false,\"anchor_graphic_icon_bg_color\":\"transparent\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_color\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_box_shadow_color\":\"transparent\",\"anchor_graphic_image_max_width\":\"none\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(182,83,'_cs_template_identifier','element|statbar'),
(183,83,'_cs_template_data','{\"atts\":{\"_type\":\"statbar\",\"statbar_base_font_size\":\"1em\",\"statbar_direction\":\"row\",\"statbar_width_row\":\"100%\",\"statbar_max_width_row\":\"none\",\"statbar_height_row\":\"5px\",\"statbar_max_height_row\":\"none\",\"statbar_width_column\":\"5px\",\"statbar_max_width_column\":\"none\",\"statbar_height_column\":\"50vh\",\"statbar_max_height_column\":\"none\",\"statbar_bg_color\":\"rgba(0, 0, 0, 0.1)\",\"statbar_trigger_offset\":\"50%\",\"statbar_margin\":\"0em 0em 0em 0em\",\"statbar_padding\":\"0em 0em 0em 0em\",\"statbar_border_width\":\"0px\",\"statbar_border_style\":\"none\",\"statbar_border_color\":\"transparent\",\"statbar_border_radius\":\"3px 3px 3px 3px\",\"statbar_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"statbar_box_shadow_color\":\"transparent\",\"statbar_bar_length\":\"92%\",\"statbar_bar_bg_color\":\"rgb(232, 47, 58)\",\"statbar_bar_border_radius\":\"3px 3px 3px 3px\",\"statbar_bar_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"statbar_bar_box_shadow_color\":\"transparent\",\"statbar_label\":true,\"statbar_label_custom_text\":false,\"statbar_label_always_show\":false,\"statbar_label_text_content\":\"HTML &amp; CSS\",\"statbar_label_justify\":\"flex-end\",\"statbar_label_bg_color\":\"#000000\",\"statbar_label_width\":\"auto\",\"statbar_label_height\":\"auto\",\"statbar_label_translate_x\":\"0%\",\"statbar_label_translate_y\":\"0%\",\"statbar_label_padding\":\"0.5em 0.65em 0.5em 0.65em\",\"statbar_label_border_width\":\"0px\",\"statbar_label_border_style\":\"none\",\"statbar_label_border_color\":\"transparent\",\"statbar_label_border_radius\":\"3px\",\"statbar_label_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"statbar_label_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"statbar_label_font_family\":\"inherit\",\"statbar_label_font_weight\":\"700\",\"statbar_label_font_size\":\"0.75em\",\"statbar_label_letter_spacing\":\"0.035em\",\"statbar_label_line_height\":\"1\",\"statbar_label_font_style\":\"normal\",\"statbar_label_text_align\":\"none\",\"statbar_label_text_decoration\":\"none\",\"statbar_label_text_transform\":\"none\",\"statbar_label_text_color\":\"#ffffff\",\"statbar_label_text_shadow_dimensions\":\"0px 0px 0px\",\"statbar_label_text_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(184,84,'_cs_template_identifier','element|text'),
(185,84,'_cs_template_data','{\"atts\":{\"_type\":\"text\",\"text_type\":\"standard\",\"text_content\":\"Input your text here! The text element is intended for longform copy that could potentially include multiple paragraphs.\",\"text_width\":\"auto\",\"text_max_width\":\"none\",\"text_bg_color\":\"transparent\",\"text_font_family\":\"inherit\",\"text_font_weight\":\"400\",\"text_font_size\":\"1em\",\"text_line_height\":\"1.4\",\"text_letter_spacing\":\"0em\",\"text_font_style\":\"normal\",\"text_text_align\":\"none\",\"text_text_decoration\":\"none\",\"text_text_transform\":\"none\",\"text_text_color\":\"rgba(0, 0, 0, 0.35)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_shadow_color\":\"transparent\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_border_width\":\"0px\",\"text_border_style\":\"none\",\"text_border_color\":\"transparent\",\"text_border_radius\":\"0em\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_box_shadow_color\":\"transparent\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"text_columns_break_inside\":\"auto\",\"text_columns\":false,\"text_columns_count\":\"2\",\"text_columns_width\":\"250px\",\"text_columns_gap\":\"25px\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_rule_color\":\"transparent\",\"css\":\"\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1}}}'),
(186,85,'_cs_template_identifier','element|video'),
(187,85,'_cs_template_data','{\"atts\":{\"_type\":\"video\",\"video_is_bg\":false,\"video_type\":\"embed\",\"video_embed_code\":\"\",\"mejs_source_files\":\"\",\"mejs_poster\":\"\",\"mejs_type\":\"video\",\"mejs_preload\":\"metadata\",\"mejs_advanced_controls\":false,\"mejs_autoplay\":false,\"mejs_loop\":false,\"mejs_controls_button_color\":\"rgba(255, 255, 255, 0.5)\",\"mejs_controls_button_color_alt\":\"rgb(232, 47, 58)\",\"mejs_controls_time_total_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"mejs_controls_time_loaded_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"mejs_controls_time_current_bg_color\":\"rgb(232, 47, 58)\",\"mejs_controls_color\":\"rgba(255, 255, 255, 0.5)\",\"mejs_controls_bg_color\":\"rgba(0, 0, 0, 0.8)\",\"mejs_controls_padding\":\"0px\",\"mejs_controls_border_width\":\"0px\",\"mejs_controls_border_style\":\"none\",\"mejs_controls_border_color\":\"transparent\",\"mejs_controls_border_radius\":\"3px\",\"mejs_controls_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"mejs_controls_box_shadow_color\":\"transparent\",\"mejs_controls_time_rail_border_radius\":\"2px\",\"mejs_controls_time_rail_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"mejs_controls_time_rail_box_shadow_color\":\"transparent\",\"mejs_hide_controls\":false,\"mejs_muted\":false,\"mejs_controls_margin\":\"auto 15px 15px 15px\",\"frame_content_type\":\"\",\"frame_content_sizing\":\"aspect-ratio\",\"frame_base_font_size\":\"16px\",\"frame_width\":\"100%\",\"frame_max_width\":\"none\",\"frame_content_aspect_ratio_width\":\"16\",\"frame_content_aspect_ratio_height\":\"9\",\"frame_content_height\":\"350px\",\"frame_bg_color\":\"#ffffff\",\"frame_margin\":\"0em\",\"frame_padding\":\"1em\",\"frame_border_width\":\"0px\",\"frame_border_style\":\"none\",\"frame_border_color\":\"transparent\",\"frame_border_radius\":\"3px\",\"frame_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"frame_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"id\":\"\",\"class\":\"\",\"hide_bp\":\"\",\"hide_login\":\"\",\"css\":\"\",\"_bp_base\":\"4_4\"}}'),
(188,86,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Introduction\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(189,86,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(190,87,'_wp_attached_file','2024/11/Baseline-Construction-_White_Long-Logo800-x-400-px.png'),
(191,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:62:\"2024/11/Baseline-Construction-_White_Long-Logo800-x-400-px.png\";s:8:\"filesize\";i:149108;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Baseline-Construction-_White_Long-Logo800-x-400-px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Baseline-Construction-_White_Long-Logo800-x-400-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12689;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"Baseline-Construction-_White_Long-Logo800-x-400-px-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132128;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:61:\"Baseline-Construction-_White_Long-Logo800-x-400-px-100x50.png\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6078;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(192,88,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:DTqAl1J3pKb4jEA7oQ\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Introduction\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(193,88,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(194,89,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_margin\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"87:full\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:DTqAl1J3pKb4jEA7oQ\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Introduction\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(195,89,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(197,90,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_style\":\"italic\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Introduction\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(198,90,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(202,91,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_style\":\"italic\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(203,91,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(204,92,'_wp_attached_file','2024/11/6-1.jpg'),
(205,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/11/6-1.jpg\";s:8:\"filesize\";i:140131;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"6-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20324;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"6-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7886;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"6-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82365;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4922;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"6-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110380;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"6-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(206,92,'_cs_attachment_import','5a138d9903a5dd4ead0e1156cab46b16'),
(207,93,'_wp_attached_file','2024/11/ten-1.jpg'),
(208,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2024/11/ten-1.jpg\";s:8:\"filesize\";i:159513;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ten-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24460;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"ten-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ten-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9143;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"ten-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95280;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"ten-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5417;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:18:\"ten-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120049;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:18:\"ten-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120049;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(209,93,'_cs_attachment_import','b3a19d1c97ad03bb5fa0f40d32220862'),
(210,94,'_wp_attached_file','2024/11/gol-1.jpg'),
(211,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2024/11/gol-1.jpg\";s:8:\"filesize\";i:127633;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"gol-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17979;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"gol-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"gol-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6990;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"gol-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74164;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"gol-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4497;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:18:\"gol-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75052;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:18:\"gol-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(212,94,'_cs_attachment_import','aec3cceaeb18cfd8f0cb69b830c7f96f'),
(213,95,'_wp_attached_file','2024/11/kid-1.jpg'),
(214,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:17:\"2024/11/kid-1.jpg\";s:8:\"filesize\";i:217352;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"kid-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26596;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"kid-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"kid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8874;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"kid-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123010;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"kid-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5239;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:18:\"kid-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144314;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:18:\"kid-1-1080x671.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(215,95,'_cs_attachment_import','4a789e31061d8658958806e54b9c51c0'),
(216,96,'_cs_template_identifier','element|__multi__'),
(217,96,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Amenities Photos\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"25% 25% 25% 25%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"92:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"sailboat\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Yacht Club\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"93:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"tennis-ball\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Courts\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"94:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"golf-flag-hole\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Golf Course\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"95:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-chimney-user\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Country club\",\"_modules\":[]}]}]}]}]}'),
(218,97,'_wp_attached_file','2024/11/4L9A7867.jpg'),
(219,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2549;s:6:\"height\";i:1699;s:4:\"file\";s:20:\"2024/11/4L9A7867.jpg\";s:8:\"filesize\";i:2795506;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A7867-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39326;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A7867-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125617;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A7867-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32608;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A7867-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85476;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A7867-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241872;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A7867-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:410907;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A7867-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29306;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A7867-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159225;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A7867-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132065;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7867-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159225;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7867-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132065;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1694500973\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(220,98,'_wp_attached_file','2024/11/4L9A4617-scaled.jpg'),
(221,98,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4617-scaled.jpg\";s:8:\"filesize\";i:975517;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4617-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43405;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4617-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35302;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4617-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111348;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4617-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:352876;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4617-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:620072;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4617-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30983;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223392;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195730;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223392;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703055564\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4617.jpg\";}'),
(222,99,'_wp_attached_file','2024/11/4L9A4616-scaled.jpg'),
(223,99,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/11/4L9A4616-scaled.jpg\";s:8:\"filesize\";i:904405;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4616-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49678;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4616-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186076;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4616-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39066;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A4616-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220565;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4616-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:354343;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4616-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:595265;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4616-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36962;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A4616-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:470637;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4616-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193576;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A4616-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:470637;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4616-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193576;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703055504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4616.jpg\";}');
INSERT INTO `wp_postmeta` VALUES
(224,100,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_style\":\"italic\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Amenities Photos\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"25% 25% 25% 25%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"40:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"sailboat\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Yacht Club\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"99:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"tennis-ball\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Courts\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"23:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"golf-flag-hole\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Golf Course\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"24:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(6, 12, 33, 0.4)\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-chimney-user\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.75em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Country club\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marginless Columns\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(225,100,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(227,101,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Introduction\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"One\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#e5e5e5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Two\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#d5d5d5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(228,101,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(229,102,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Experience &amp; Certified</strong>\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"We <span style=\\\"font-family: inherit; font-size: calc(21px + 1.25vw); letter-spacing: -0.015em;\\\">guarantee</span><br />our work\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Three\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(230,102,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(231,103,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"New Construction &amp; Renovations\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(232,103,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(233,104,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Why Choose Baseline Stucco?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"New Construction &amp; Renovations\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(234,104,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(235,105,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Strength in Every Finish, Pride in Every Detail.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:secondary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"New Construction &amp; Renovations\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"98:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Summary\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature one\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature two\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature three\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(236,105,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(237,106,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<span style=\\\"color: #ffffff;\\\">Strength in Every Finish, Pride in Every Detail.</span>\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"40:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_content\":\"amazed\\nimpressed\\nintrigued\",\"text_typing_prefix\":\"I\'m back! Aren\'t you \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\" by my typing skills?\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(238,106,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(239,107,'_wp_attached_file','2024/11/4L9A4615-scaled.jpg'),
(240,107,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4615-scaled.jpg\";s:8:\"filesize\";i:823998;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4615-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42194;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4615-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156935;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4615-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33347;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4615-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103345;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4615-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310554;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4615-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:533229;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4615-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30352;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4615-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200625;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4615-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179782;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4615-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200625;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4615-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703055492\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4615.jpg\";}'),
(241,108,'_wp_attached_file','2024/11/4L9A3012.jpg'),
(242,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1875;s:6:\"height\";i:2500;s:4:\"file\";s:20:\"2024/11/4L9A3012.jpg\";s:8:\"filesize\";i:4380823;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3012-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60363;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3012-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A3012-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251187;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3012-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:495278;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3012-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:816860;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3012-100x133.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43463;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A3012-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:531110;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3012-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226609;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A3012-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:531110;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3012-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226609;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723328\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(243,109,'_wp_attached_file','2024/11/4L9A3011.jpg'),
(244,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A3011.jpg\";s:8:\"filesize\";i:3850678;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3011-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56368;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3011-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44190;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A3011-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146520;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3011-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:436752;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3011-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:715568;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A3011-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39140;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A3011-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288709;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3011-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258982;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3011-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288709;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3011-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258982;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723321\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(245,110,'_wp_attached_file','2024/11/4L9A3013.jpg'),
(246,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A3013.jpg\";s:8:\"filesize\";i:3145005;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3013-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52760;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3013-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A3013-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123886;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3013-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:337036;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3013-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:547660;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A3013-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37111;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A3013-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228607;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3013-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202566;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3013-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228607;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3013-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723389\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(247,111,'_wp_attached_file','2024/11/4L9A3010.jpg'),
(248,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A3010.jpg\";s:8:\"filesize\";i:4084354;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3010-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56086;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3010-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A3010-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150915;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3010-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:463787;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3010-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:768893;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A3010-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38976;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A3010-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304338;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3010-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268107;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3010-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304338;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3010-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723316\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(249,112,'_wp_attached_file','2024/11/4L9A3009-1.jpg'),
(250,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:22:\"2024/11/4L9A3009-1.jpg\";s:8:\"filesize\";i:3517978;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A3009-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51870;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A3009-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A3009-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41503;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A3009-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128160;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A3009-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:373766;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A3009-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:617919;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A3009-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36808;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A3009-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248198;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A3009-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229169;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A3009-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248198;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A3009-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723311\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(251,113,'_wp_attached_file','2024/11/4L9A3006-1.jpg'),
(252,113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:22:\"2024/11/4L9A3006-1.jpg\";s:8:\"filesize\";i:3258708;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A3006-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50912;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A3006-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A3006-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40650;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A3006-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121420;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A3006-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343494;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A3006-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:567994;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A3006-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36412;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A3006-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229680;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A3006-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207479;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A3006-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229680;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A3006-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723269\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(253,114,'_wp_attached_file','2024/11/4L9A3003.jpg'),
(254,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1875;s:6:\"height\";i:2500;s:4:\"file\";s:20:\"2024/11/4L9A3003.jpg\";s:8:\"filesize\";i:3419856;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3003-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49126;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3003-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180688;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38176;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A3003-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180688;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3003-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341691;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3003-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:563196;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3003-100x133.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36453;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A3003-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:365733;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3003-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151624;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A3003-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:365733;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3003-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151624;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723141\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(255,115,'_wp_attached_file','2024/11/4L9A3002.jpg'),
(256,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1875;s:6:\"height\";i:2500;s:4:\"file\";s:20:\"2024/11/4L9A3002.jpg\";s:8:\"filesize\";i:3577725;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A3002-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51740;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A3002-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41309;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A3002-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175932;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A3002-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341197;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A3002-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:572239;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A3002-100x133.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38466;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A3002-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:364999;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A3002-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187793;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A3002-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:364999;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A3002-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187793;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723116\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(257,116,'_wp_attached_file','2024/11/4L9A2998.jpg'),
(258,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2024/11/4L9A2998.jpg\";s:8:\"filesize\";i:3537119;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A2998-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50312;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A2998-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A2998-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40000;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A2998-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127755;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A2998-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:383614;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A2998-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:636594;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A2998-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35912;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A2998-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252235;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A2998-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215498;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A2998-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252235;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A2998-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215498;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1534723082\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(259,117,'_wp_attached_file','2024/11/4L9A4634-Edit-scaled.jpg'),
(260,117,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:32:\"2024/11/4L9A4634-Edit-scaled.jpg\";s:8:\"filesize\";i:595871;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"4L9A4634-Edit-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36539;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"4L9A4634-Edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30333;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"4L9A4634-Edit-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80361;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"4L9A4634-Edit-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224297;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"4L9A4634-Edit-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:382536;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:24:\"4L9A4634-Edit-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27801;}s:5:\"entry\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147765;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126295;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147765;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126295;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703058031\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"4L9A4634-Edit.jpg\";}'),
(261,118,'_wp_attached_file','2024/11/4L9A4633-scaled.jpg'),
(262,118,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4633-scaled.jpg\";s:8:\"filesize\";i:754208;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4633-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37971;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4633-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4633-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91212;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4633-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274690;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4633-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:479289;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4633-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28060;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177021;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146751;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177021;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057893\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4633.jpg\";}'),
(263,119,'_wp_attached_file','2024/11/4L9A4632-scaled.jpg'),
(264,119,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4632-scaled.jpg\";s:8:\"filesize\";i:809348;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4632-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37069;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145260;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4632-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4632-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92787;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4632-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293877;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4632-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:517222;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4632-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27464;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187240;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160069;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187240;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4632.jpg\";}'),
(265,120,'_wp_attached_file','2024/11/4L9A4630-scaled.jpg'),
(266,120,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4630-scaled.jpg\";s:8:\"filesize\";i:887159;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4630-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39527;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150943;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4630-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4630-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97664;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4630-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309282;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4630-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:553882;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4630-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195664;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158262;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195664;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158262;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057850\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4630.jpg\";}'),
(267,121,'_wp_attached_file','2024/11/4L9A4629-scaled.jpg'),
(268,121,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4629-scaled.jpg\";s:8:\"filesize\";i:999052;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4629-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42636;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4629-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34042;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4629-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113345;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4629-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363694;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4629-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:638151;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4629-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30449;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230542;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193005;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230542;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057824\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4629.jpg\";}'),
(269,122,'_wp_attached_file','2024/11/4L9A4837-scaled.jpg'),
(270,122,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4837-scaled.jpg\";s:8:\"filesize\";i:1005330;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4837-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41114;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4837-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154539;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4837-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4837-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99321;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4837-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338564;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4837-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:624936;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4837-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30170;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4837-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205638;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4837-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176748;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4837-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205638;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4837-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176748;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1632476592\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4837.jpg\";}'),
(271,123,'_wp_attached_file','2024/11/4L9A4836-scaled.jpg'),
(272,123,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4836-scaled.jpg\";s:8:\"filesize\";i:997214;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4836-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45607;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4836-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170943;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4836-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36287;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4836-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110460;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4836-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:354223;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4836-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:629573;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4836-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32570;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4836-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223216;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4836-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197399;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4836-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223216;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4836-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197399;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1632476578\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4836.jpg\";}'),
(273,124,'_wp_attached_file','2024/11/4L9A4835.jpg'),
(274,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2547;s:6:\"height\";i:1698;s:4:\"file\";s:20:\"2024/11/4L9A4835.jpg\";s:8:\"filesize\";i:4756034;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4835-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50948;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4835-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4835-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39357;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4835-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142112;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4835-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:486244;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4835-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:844215;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4835-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34871;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4835-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304479;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4835-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261511;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4835-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304479;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4835-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261511;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1632476424\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(277,125,'_menu_item_type','post_type'),
(278,125,'_menu_item_menu_item_parent','0'),
(279,125,'_menu_item_object_id','2'),
(280,125,'_menu_item_object','page'),
(281,125,'_menu_item_target',''),
(282,125,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(283,125,'_menu_item_xfn',''),
(284,125,'_menu_item_url',''),
(286,125,'menu-item-anchor_graphic_menu_item_display','on'),
(287,125,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(288,125,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(289,49,'_edit_last','1'),
(290,126,'_menu_item_type','post_type'),
(291,126,'_menu_item_menu_item_parent','0'),
(292,126,'_menu_item_object_id','49'),
(293,126,'_menu_item_object','page'),
(294,126,'_menu_item_target',''),
(295,126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(296,126,'_menu_item_xfn',''),
(297,126,'_menu_item_url',''),
(298,49,'_edit_lock','1732551595:1'),
(299,46,'_edit_last','1'),
(300,127,'_menu_item_type','post_type'),
(301,127,'_menu_item_menu_item_parent','0'),
(302,127,'_menu_item_object_id','46'),
(303,127,'_menu_item_object','page'),
(304,127,'_menu_item_target',''),
(305,127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(306,127,'_menu_item_xfn',''),
(307,127,'_menu_item_url',''),
(308,46,'_edit_lock','1732573689:1'),
(309,3,'_edit_last','1'),
(310,128,'_menu_item_type','post_type'),
(311,128,'_menu_item_menu_item_parent','0'),
(312,128,'_menu_item_object_id','3'),
(313,128,'_menu_item_object','page'),
(314,128,'_menu_item_target',''),
(315,128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(316,128,'_menu_item_xfn',''),
(317,128,'_menu_item_url',''),
(318,129,'_cornerstone_data',NULL),
(319,129,'_cornerstone_settings',NULL),
(320,3,'_edit_lock','1732551558:1'),
(323,130,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Headline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"40:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"123:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(324,130,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(326,131,'_menu_item_type','post_type'),
(327,131,'_menu_item_menu_item_parent','0'),
(328,131,'_menu_item_object_id','46'),
(329,131,'_menu_item_object','page'),
(330,131,'_menu_item_target',''),
(331,131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(332,131,'_menu_item_xfn',''),
(333,131,'_menu_item_url',''),
(335,132,'_menu_item_type','post_type'),
(336,132,'_menu_item_menu_item_parent','0'),
(337,132,'_menu_item_object_id','49'),
(338,132,'_menu_item_object','page'),
(339,132,'_menu_item_target',''),
(340,132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(341,132,'_menu_item_xfn',''),
(342,132,'_menu_item_url',''),
(344,131,'menu-item-anchor_graphic_menu_item_display','on'),
(345,131,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(346,131,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(347,132,'menu-item-anchor_graphic_menu_item_display','on'),
(348,132,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(349,132,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(350,133,'_wp_page_template','template-blank-4.php'),
(351,133,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(352,133,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:secondary\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"EIFS Installation\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances energy efficiency with R-values ranging from 6 to 12+.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Reduces heating and cooling costs by insulating the building exterior.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Lightweight and flexible, minimizing structural stress on the building.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Provides a sleek, modern appearance with customizable textures.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Highly weather-resistant, protecting against moisture and temperature changes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Adds timeless beauty with customizable textures and finishes.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Increases home value with durable, low-maintenance exterior surfaces.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Protects against the elements with weather-resistant materials.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency with natural insulating properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Available in a variety of colors and textures to match your home&rsquo;s aesthetic.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances the professional appearance of commercial properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Durable and long-lasting, reducing maintenance costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Resistant to cracking, fading, and weather damage.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency for lower operating costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Versatile design options to suit any business style or branding.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Renovations and Repairs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Revitalize your property with expert stucco renovations and repairs. From repairing cracks and damage to modernizing outdated finishes, we specialize in breathing new life into existing structures. Our team ensures a seamless match between new and old finishes, leaving your property looking refreshed and flawless.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Restores damaged stucco to like-new condition with seamless results.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Prevents further structural issues by addressing cracks and wear.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Modernizes outdated finishes to align with current design trends.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves curb appeal, increasing property value.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Ensures long-lasting results with high-quality materials and techniques.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(353,134,'_cornerstone_data','[]'),
(354,134,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(355,133,'_cs_last_save','2024-11-26 18:29:49'),
(356,133,'_cs_states_cache',''),
(358,135,'_cornerstone_data','[]'),
(359,135,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(360,136,'_wp_page_template','template-blank-4.php'),
(361,136,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(362,136,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Commerical Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(363,137,'_cornerstone_data','[]'),
(364,137,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(365,136,'_cs_last_save','2024-11-26 17:00:58'),
(366,136,'_cs_states_cache',''),
(367,138,'_cornerstone_data','[]'),
(368,138,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(369,136,'_edit_last','1'),
(370,139,'_menu_item_type','post_type'),
(371,139,'_menu_item_menu_item_parent','0'),
(372,139,'_menu_item_object_id','136'),
(373,139,'_menu_item_object','page'),
(374,139,'_menu_item_target',''),
(375,139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(376,139,'_menu_item_xfn',''),
(377,139,'_menu_item_url',''),
(378,136,'_edit_lock','1732553188:1'),
(379,133,'_edit_last','1'),
(388,133,'_edit_lock','1732553201:1'),
(398,142,'_menu_item_type','post_type'),
(399,142,'_menu_item_menu_item_parent','0'),
(400,142,'_menu_item_object_id','133'),
(401,142,'_menu_item_object','page'),
(402,142,'_menu_item_target',''),
(403,142,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(404,142,'_menu_item_xfn',''),
(405,142,'_menu_item_url',''),
(410,142,'menu-item-anchor_graphic_menu_item_display','on'),
(411,142,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(412,142,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(413,143,'_wp_attached_file','2024/11/Baseline-Construction-200-x-200-px.png'),
(414,143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:46:\"2024/11/Baseline-Construction-200-x-200-px.png\";s:8:\"filesize\";i:38553;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Baseline-Construction-200-x-200-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22724;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:46:\"Baseline-Construction-200-x-200-px-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12172;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(415,144,'_wp_attached_file','2024/11/Baseline-Construction-200-x-200-px-1.png'),
(416,144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:48:\"2024/11/Baseline-Construction-200-x-200-px-1.png\";s:8:\"filesize\";i:34764;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Baseline-Construction-200-x-200-px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22302;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"Baseline-Construction-200-x-200-px-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12230;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(420,145,'_wp_attached_file','2024/11/hyundai_baseline_stucco.gif'),
(421,145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2024/11/hyundai_baseline_stucco.gif\";s:8:\"filesize\";i:16779054;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"hyundai_baseline_stucco-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:404;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"hyundai_baseline_stucco-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"hyundai_baseline_stucco-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:257;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"hyundai_baseline_stucco-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1062;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:34:\"hyundai_baseline_stucco-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:162;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:36:\"hyundai_baseline_stucco-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:36:\"hyundai_baseline_stucco-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(424,146,'_wp_attached_file','2024/11/bll.gif'),
(425,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2024/11/bll.gif\";s:8:\"filesize\";i:551883;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"bll-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:454;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"bll-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:37798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"bll-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"bll-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5244;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:14:\"bll-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:209;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:16:\"bll-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:58077;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:16:\"bll-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:58077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(428,147,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"146:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"123:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(429,147,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(430,148,'_wp_attached_file','2024/11/2.gif'),
(431,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:13:\"2024/11/2.gif\";s:8:\"filesize\";i:763042;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:410;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"2-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:263;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"2-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1068;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:12:\"2-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:168;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:14:\"2-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:14:\"2-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES
(432,149,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"146:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Centered Feature\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Feature Section\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px 3px 0px 0px\",\"image_margin\":\"35px 0px 0px 0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_styled_max_width\":\"600px\",\"image_width\":1600}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(433,149,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(434,150,'_wp_page_template','template-blank-4.php'),
(435,150,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(436,150,'_cornerstone_data','[]'),
(437,151,'_cornerstone_data','[]'),
(438,151,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(439,150,'_cs_last_save','2024-11-25 17:45:49'),
(440,150,'_cs_states_cache','Draft'),
(441,152,'_cs_last_save','2024-11-25 17:45:56'),
(442,152,'_cs_states_cache',''),
(444,153,'_cs_last_save','2024-11-26 20:56:12'),
(445,154,'_cs_template_identifier','element|__multi__'),
(446,154,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Main Footer\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_color\":\"global-color:4272616e64205072696d617279\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_border_width\":\"0px\",\"bar_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"bar_box_shadow_dimensions\":\"0em 0.15em 2em\",\"bar_content_length\":\"88%\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"6.25em 0em 1em 0em\",\"bar_row_flex_align\":\"flex-start\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"99\",\"bg_border_radius\":\"inherit\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(255, 255, 255, 0)\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"1 0 320px\",\"container_margin\":\"!0px\",\"container_padding\":\"0em 4em 4em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"flex-start\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Location\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 30px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Office\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 40px 0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"The Moorings Realty Sales Co.<br />\\n2125 Windward Way<br />\\nVero Beach, Florida 32963\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Social\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 20px 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"left\",\"_modules\":[{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"linkedin-in\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"https://www.linkedin.com/in/erika-ross-020b2514\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"facebook-f\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"https://www.facebook.com/ErikaRossatTheMooringsVeroBeach\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"twitter\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"https://x.com/i/flow/login?redirect_after_login=%2Ferikaross\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"instagram\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"https://www.instagram.com/erika_at_themoorings/\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(140, 51, 51, 0)\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"1 0 320px\",\"container_margin\":\"0px\",\"container_padding\":\"0em 0em 4em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"flex-start\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Contact\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 30px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"css\":\"$el a {color: #fff;}\\n$el a:hover {color: rgb(52, 204, 153);}\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Call Today\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 40px 0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"<a href=\\\"tel:7724737762\\\">(772) 473-7762</a>\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"css\":\"$el a {color: #fff;}\\n$el a:hover {color: rgb(52, 204, 153);}\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Email\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_subheadline\":true,\"text_subheadline_content\":\"<a href=\\\"mailto:erika@erikalross.com\\\">erika@erikalross.com</a>\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(255, 255, 255, 0)\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 0em 2em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_justify\":\"flex-start\",\"container_row_flex_wrap\":true,\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Navigation\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"text_width\":\"100%\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 0px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"rgba(59, 59, 59, 0)\",\"line_height\":\"50px\",\"line_margin\":\"0px 0px 30px 0px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color\":\"transparent transparent transparent transparent\",\"anchor_border_color_alt\":\"transparent transparent rgb(52,204,153) transparent\",\"anchor_border_radius\":\"0em\",\"anchor_border_style\":\"none none none none\",\"anchor_border_width\":\"0px 0px 1px 0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0em 0em 0em 0em\",\"anchor_primary_font_size\":\"1rem\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_line_height\":\"1.8\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:4c696e6b\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_color_alt\":\"global-color:YFP6101dwXohQOJ4sw\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"dropdown_bg_color\":\"rgb(25, 25, 25)\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"menu\":\"menu:378\",\"menu_flex\":\"1 1 50%\",\"menu_row_flex_align\":\"flex-start\",\"menu_row_flex_direction\":\"column\",\"menu_row_flex_justify\":\"flex-start\",\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_primary_font_family\":\"3115e8ff-a474-4a4b-86e4-b5ef4f3a13cd\",\"sub_anchor_primary_font_weight\":\"400\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_text_color\":\"rgb(255, 255, 255)\",\"sub_anchor_primary_text_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"sub_anchor_sub_indicator_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"_modules\":[]},{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color\":\"transparent transparent transparent transparent\",\"anchor_border_color_alt\":\"transparent transparent rgb(52,204,153) transparent\",\"anchor_border_style\":\"none none none none\",\"anchor_border_width\":\"!0px 0px 1px 0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_size\":\"1rem\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_line_height\":\"1.8\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:4c696e6b\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_sub_indicator_margin\":\"!5px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"css\":\"$el a:hover .x-anchor-text-primary {\\n  text-decoration: underline;\\n}\",\"dropdown_bg_color\":\"rgb(25, 25, 25)\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"menu\":\"menu:379\",\"menu_flex\":\"1 1 50%\",\"menu_row_flex_align\":\"flex-start\",\"menu_row_flex_direction\":\"column\",\"menu_row_flex_justify\":\"flex-start\",\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_primary_font_weight\":\"400\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_text_color\":\"rgb(255, 255, 255)\",\"sub_anchor_primary_text_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"sub_anchor_sub_indicator_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"_modules\":[]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Copyright\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"14px\",\"bar_bg_color\":\"#1d1d1d\",\"bar_border_color\":\"#2f2f2f transparent transparent transparent\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_border_style\":\"solid none none none\",\"bar_border_width\":\"!1px 0px 0px 0px\",\"bar_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"bar_box_shadow_dimensions\":\"!0em 0.15em 2em\",\"bar_content_length\":\"88%\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"30px 0em 0px 0em\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"css\":\"@media (max-width: 727px) {\\n\\t$el.x-bar-content {\\n\\t\\tflex-direction: column;\\n\\t}\\n}\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0px 0px 30px 0px\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"\\u00a9 2024 <a href=\\\"/\\\" style=\\\"color: #ffffff;\\\">Erika Ross</a> Realtor\\u00ae & The Moorings Realty Sales Company Vero Beach in Indian River County, Florida. All rights reserved. Marketing and Website by <a href=\\\"https://verobeach.marketing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"color: #ffffff;\\\">Vero Beach Marketing</a>.\",\"text_font_family\":\"google:jost\",\"text_font_size\":\".8rem\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.4\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_align\":\"center\",\"text_text_color\":\"rgb(208, 208, 208)\",\"text_type\":\"standard\",\"_modules\":[]}]}]}]}'),
(449,155,'_wp_attached_file','2024/11/3.gif'),
(450,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:13:\"2024/11/3.gif\";s:8:\"filesize\";i:435286;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:425;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"3-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:44549;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"3-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3166;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:12:\"3-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:182;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:14:\"3-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:66319;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:14:\"3-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:66319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(451,156,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"155:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"146:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(452,156,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(453,157,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_retina\":false,\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"155:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"146:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"http://via.placeholder.com/300x300.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"123:full\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"117:full\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"116:full\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(255, 255, 0)\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! You just can\'t get rid of me.\",\"text_content_margin\":\"0px\",\"text_flex_direction\":\"row-reverse\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"smile-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.25em 0px 0em 0.25em\",\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"31em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(454,157,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(455,158,'_wp_attached_file','2024/11/5.gif'),
(456,158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:13:\"2024/11/5.gif\";s:8:\"filesize\";i:1184460;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:454;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"5-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:14556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"5-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1178;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:12:\"5-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:209;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:14:\"5-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:53501;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:14:\"5-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:53501;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(458,159,'_wp_attached_file','2024/11/4L9A4618-scaled.jpg'),
(459,159,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4618-scaled.jpg\";s:8:\"filesize\";i:872034;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4618-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46667;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177619;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4618-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37040;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4618-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117664;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4618-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:344692;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4618-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:575578;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4618-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32705;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227512;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208178;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227512;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208178;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4618.jpg\";}'),
(460,160,'_wp_attached_file','2024/11/4L9A4605-2-scaled.jpg'),
(461,160,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4605-2-scaled.jpg\";s:8:\"filesize\";i:1127075;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4605-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44616;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195884;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4605-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4605-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121996;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4605-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:411489;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4605-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:723923;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4605-2-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31637;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258405;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222959;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258405;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972930\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4605-2.jpg\";}'),
(462,161,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"97:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(463,161,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(464,162,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 0%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Dark Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Even More Features\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/4\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":500,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/500x500.png/252525/888888/?text=PLACEHOLDER\",\"image_width\":500}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_color\":\"transparent transparent #e5e5e5 transparent\",\"section_border_style\":\"none none solid none\",\"section_border_width\":\"0px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Two Column Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"2em 0em 0em 0em\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"http://via.placeholder.com/1600x800.png/000000/888888/?text=PLACEHOLDER\",\"image_width\":1600}]}]}]}]'),
(465,162,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(466,163,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(467,163,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(469,164,'_wp_attached_file','2024/11/Baseline-Construction-Long-Logo800-x-400-px-200-x-100-px.png'),
(470,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:100;s:4:\"file\";s:68:\"2024/11/Baseline-Construction-Long-Logo800-x-400-px-200-x-100-px.png\";s:8:\"filesize\";i:19172;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Baseline-Construction-Long-Logo800-x-400-px-200-x-100-px-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13757;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:67:\"Baseline-Construction-Long-Logo800-x-400-px-200-x-100-px-100x50.png\";s:5:\"width\";i:100;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,165,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]}]'),
(474,165,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(475,166,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]}]'),
(476,166,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(478,167,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(479,167,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(481,168,'_cs_template_identifier','element|__multi__'),
(482,168,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]}]}'),
(483,169,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Services\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"3px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(60, 60, 60)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Designer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(40, 40, 40)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Developer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(20, 20, 20)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marketer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(0, 0, 0)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Support\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(484,169,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(485,170,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"3px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(60, 60, 60)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Designer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(40, 40, 40)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Developer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(20, 20, 20)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marketer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"rgb(0, 0, 0)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Support\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(486,170,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(487,171,'_wp_attached_file','2024/11/Untitled-design.gif'),
(488,171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/11/Untitled-design.gif\";s:8:\"filesize\";i:519689;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Untitled-design-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:410;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Untitled-design-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Untitled-design-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:263;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Untitled-design-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1068;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"Untitled-design-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:168;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:28:\"Untitled-design-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:61114;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:28:\"Untitled-design-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:61114;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(489,172,'_wp_attached_file','2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076.webp'),
(490,172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076.webp\";s:8:\"filesize\";i:1083210;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:94070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:550774;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13282;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:724268;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:724268;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(491,173,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:secondary\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"EIFS Installation\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances energy efficiency with R-values ranging from 6 to 12+.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Reduces heating and cooling costs by insulating the building exterior.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Lightweight and flexible, minimizing structural stress on the building.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Provides a sleek, modern appearance with customizable textures.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Highly weather-resistant, protecting against moisture and temperature changes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_src\":\"172:full\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Developer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Marketer\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Support\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(492,173,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(493,174,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:secondary\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"EIFS Installation\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances energy efficiency with R-values ranging from 6 to 12+.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Reduces heating and cooling costs by insulating the building exterior.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Lightweight and flexible, minimizing structural stress on the building.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Provides a sleek, modern appearance with customizable textures.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Highly weather-resistant, protecting against moisture and temperature changes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_src\":\"172:full\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Adds timeless beauty with customizable textures and finishes.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Increases home value with durable, low-maintenance exterior surfaces.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Protects against the elements with weather-resistant materials.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency with natural insulating properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Available in a variety of colors and textures to match your home&rsquo;s aesthetic.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances the professional appearance of commercial properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Durable and long-lasting, reducing maintenance costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Resistant to cracking, fading, and weather damage.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency for lower operating costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Versatile design options to suit any business style or branding.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Support\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"What We\'re Looking For\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p><p><span style=\\\"color: #ffffff;\\\">02.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">03.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.</p><p><span style=\\\"color: #ffffff;\\\">04.</span> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(494,174,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(495,175,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:secondary\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"EIFS Installation\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances energy efficiency with R-values ranging from 6 to 12+.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Reduces heating and cooling costs by insulating the building exterior.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Lightweight and flexible, minimizing structural stress on the building.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Provides a sleek, modern appearance with customizable textures.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Highly weather-resistant, protecting against moisture and temperature changes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Adds timeless beauty with customizable textures and finishes.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Increases home value with durable, low-maintenance exterior surfaces.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Protects against the elements with weather-resistant materials.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency with natural insulating properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Available in a variety of colors and textures to match your home&rsquo;s aesthetic.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"hsl(0, 0%, 100%)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances the professional appearance of commercial properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Durable and long-lasting, reducing maintenance costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Resistant to cracking, fading, and weather damage.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency for lower operating costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Versatile design options to suit any business style or branding.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Renovations and Repairs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Revitalize your property with expert stucco renovations and repairs. From repairing cracks and damage to modernizing outdated finishes, we specialize in breathing new life into existing structures. Our team ensures a seamless match between new and old finishes, leaving your property looking refreshed and flawless.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Restores damaged stucco to like-new condition with seamless results.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Prevents further structural issues by addressing cracks and wear.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Modernizes outdated finishes to align with current design trends.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves curb appeal, increasing property value.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Ensures long-lasting results with high-quality materials and techniques.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(496,175,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(497,176,'_cs_template_identifier','element|__multi__'),
(498,176,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:secondary\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"EIFS Installation\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances energy efficiency with R-values ranging from 6 to 12+.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Reduces heating and cooling costs by insulating the building exterior.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Lightweight and flexible, minimizing structural stress on the building.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Provides a sleek, modern appearance with customizable textures.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Highly weather-resistant, protecting against moisture and temperature changes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Adds timeless beauty with customizable textures and finishes.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Increases home value with durable, low-maintenance exterior surfaces.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Protects against the elements with weather-resistant materials.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency with natural insulating properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Available in a variety of colors and textures to match your home&rsquo;s aesthetic.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.68)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Enhances the professional appearance of commercial properties.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Durable and long-lasting, reducing maintenance costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Resistant to cracking, fading, and weather damage.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves energy efficiency for lower operating costs.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Versatile design options to suit any business style or branding.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(2vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Renovations and Repairs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Revitalize your property with expert stucco renovations and repairs. From repairing cracks and damage to modernizing outdated finishes, we specialize in breathing new life into existing structures. Our team ensures a seamless match between new and old finishes, leaving your property looking refreshed and flawless.</p>\",\"text_font_size\":\"calc(0.5vw + 16px)\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.75em 0em 1.5em 0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_color\":\"transparent transparent rgba(255,255,255,0.25) transparent\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none none solid none\",\"text_border_width\":\"0px 0px 2px 0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Benefits\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em 0em 1.25em 0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"left\",\"text_text_color\":\"white\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns\":true,\"text_columns_break_inside\":\"avoid\",\"text_columns_gap\":\"1.5em\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_columns_width\":\"210px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">01.</span> Restores damaged stucco to like-new condition with seamless results.</p>\\n<p><span style=\\\"color: #ffffff;\\\">02.</span> Prevents further structural issues by addressing cracks and wear.</p>\\n<p><span style=\\\"color: #ffffff;\\\">03.</span> Modernizes outdated finishes to align with current design trends.</p>\\n<p><span style=\\\"color: #ffffff;\\\">04.</span> Improves curb appeal, increasing property value.</p>\\n<p><span style=\\\"color: #ffffff;\\\">05.</span> Ensures long-lasting results with high-quality materials and techniques.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"rgba(255, 255, 255, 0.4)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]}'),
(501,177,'_wp_attached_file','2024/11/24-web-or-mls-2105-Windward-Way-24.jpg'),
(502,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/24-web-or-mls-2105-Windward-Way-24.jpg\";s:8:\"filesize\";i:367768;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"24-web-or-mls-2105-Windward-Way-24-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12696;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"24-web-or-mls-2105-Windward-Way-24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"24-web-or-mls-2105-Windward-Way-24-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65395;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"24-web-or-mls-2105-Windward-Way-24-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227930;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"24-web-or-mls-2105-Windward-Way-24-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2318;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145631;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127698;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145631;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(503,177,'_cs_attachment_import','e0147e7b1879fe9dd7e31c3cfdcaa62f'),
(504,178,'_wp_attached_file','2024/11/30-web-or-mls-2105-Windward-Way-30.jpg'),
(505,178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/30-web-or-mls-2105-Windward-Way-30.jpg\";s:8:\"filesize\";i:257889;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"30-web-or-mls-2105-Windward-Way-30-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10862;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84687;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"30-web-or-mls-2105-Windward-Way-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"30-web-or-mls-2105-Windward-Way-30-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"30-web-or-mls-2105-Windward-Way-30-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168428;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"30-web-or-mls-2105-Windward-Way-30-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2233;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110483;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89981;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110483;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(506,178,'_cs_attachment_import','3236c3a61b008f40b43fa65e808f1778'),
(507,179,'_wp_attached_file','2024/11/31-web-or-mls-2105-Windward-Way-31.jpg'),
(508,179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/31-web-or-mls-2105-Windward-Way-31.jpg\";s:8:\"filesize\";i:335708;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"31-web-or-mls-2105-Windward-Way-31-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12012;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"31-web-or-mls-2105-Windward-Way-31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5169;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"31-web-or-mls-2105-Windward-Way-31-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62088;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"31-web-or-mls-2105-Windward-Way-31-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210910;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"31-web-or-mls-2105-Windward-Way-31-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2237;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136800;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110950;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136800;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(509,179,'_cs_attachment_import','7fca83756b30d047ab4720936626abbc'),
(510,180,'_wp_attached_file','2024/11/35-web-or-mls-2105-Windward-Way-35.jpg'),
(511,180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/35-web-or-mls-2105-Windward-Way-35.jpg\";s:8:\"filesize\";i:341402;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"35-web-or-mls-2105-Windward-Way-35-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13018;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"35-web-or-mls-2105-Windward-Way-35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"35-web-or-mls-2105-Windward-Way-35-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66759;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"35-web-or-mls-2105-Windward-Way-35-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223486;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"35-web-or-mls-2105-Windward-Way-35-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2398;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145870;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121234;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145870;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(512,180,'_cs_attachment_import','0b6eed19531c08821fb41221937b81c6'),
(513,181,'_wp_attached_file','2024/11/37-web-or-mls-2105-Windward-Way-37.jpg'),
(514,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/37-web-or-mls-2105-Windward-Way-37.jpg\";s:8:\"filesize\";i:265430;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"37-web-or-mls-2105-Windward-Way-37-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10747;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"37-web-or-mls-2105-Windward-Way-37-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"37-web-or-mls-2105-Windward-Way-37-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52597;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"37-web-or-mls-2105-Windward-Way-37-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174487;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"37-web-or-mls-2105-Windward-Way-37-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2111;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113848;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98158;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113848;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(515,181,'_cs_attachment_import','cddf1baae7565e10de709d191af2507c'),
(516,182,'_wp_attached_file','2024/11/42-web-or-mls-2105-Windward-Way-42.jpg'),
(517,182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/42-web-or-mls-2105-Windward-Way-42.jpg\";s:8:\"filesize\";i:382855;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"42-web-or-mls-2105-Windward-Way-42-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15361;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"42-web-or-mls-2105-Windward-Way-42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"42-web-or-mls-2105-Windward-Way-42-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76686;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"42-web-or-mls-2105-Windward-Way-42-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254435;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"42-web-or-mls-2105-Windward-Way-42-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2870;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167205;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139670;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167205;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(518,182,'_cs_attachment_import','c72b9b8f1051a4f8c4b4841b1f776114'),
(519,183,'_wp_attached_file','2024/11/36-web-or-mls-2105-Windward-Way-36.jpg'),
(520,183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/36-web-or-mls-2105-Windward-Way-36.jpg\";s:8:\"filesize\";i:318390;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"36-web-or-mls-2105-Windward-Way-36-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12656;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"36-web-or-mls-2105-Windward-Way-36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5293;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"36-web-or-mls-2105-Windward-Way-36-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62911;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"36-web-or-mls-2105-Windward-Way-36-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207216;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"36-web-or-mls-2105-Windward-Way-36-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2412;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136115;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121968;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136115;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(521,183,'_cs_attachment_import','c83215ebf3bf501fceb9de3b52a15a90'),
(522,184,'_wp_attached_file','2024/11/43-web-or-mls-2105-Windward-Way-43.jpg'),
(523,184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/43-web-or-mls-2105-Windward-Way-43.jpg\";s:8:\"filesize\";i:413218;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"43-web-or-mls-2105-Windward-Way-43-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15665;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"43-web-or-mls-2105-Windward-Way-43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7035;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"43-web-or-mls-2105-Windward-Way-43-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75617;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"43-web-or-mls-2105-Windward-Way-43-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255490;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"43-web-or-mls-2105-Windward-Way-43-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3007;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146916;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146916;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(524,184,'_cs_attachment_import','3abb63a2ee776f628501d3e3e5cd811b'),
(525,185,'_wp_attached_file','2024/11/44-web-or-mls-2105-Windward-Way-44.jpg'),
(526,185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/44-web-or-mls-2105-Windward-Way-44.jpg\";s:8:\"filesize\";i:225950;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"44-web-or-mls-2105-Windward-Way-44-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10579;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"44-web-or-mls-2105-Windward-Way-44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"44-web-or-mls-2105-Windward-Way-44-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47620;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"44-web-or-mls-2105-Windward-Way-44-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149107;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"44-web-or-mls-2105-Windward-Way-44-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2140;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99469;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87975;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99469;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87975;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(527,185,'_cs_attachment_import','dc9c00332ac209640b30ad401499cdc1'),
(528,186,'_wp_attached_file','2024/11/39-web-or-mls-2105-Windward-Way-39.jpg'),
(529,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/39-web-or-mls-2105-Windward-Way-39.jpg\";s:8:\"filesize\";i:253901;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"39-web-or-mls-2105-Windward-Way-39-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12067;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"39-web-or-mls-2105-Windward-Way-39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5828;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"39-web-or-mls-2105-Windward-Way-39-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53396;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"39-web-or-mls-2105-Windward-Way-39-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167212;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"39-web-or-mls-2105-Windward-Way-39-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2488;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110994;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98835;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110994;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98835;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(530,186,'_cs_attachment_import','ad824a1c8a1cce73a480812a2a3ad279'),
(531,187,'_wp_attached_file','2024/11/40-web-or-mls-2105-Windward-Way-40.jpg'),
(532,187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/40-web-or-mls-2105-Windward-Way-40.jpg\";s:8:\"filesize\";i:300739;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"40-web-or-mls-2105-Windward-Way-40-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12835;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"40-web-or-mls-2105-Windward-Way-40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5700;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"40-web-or-mls-2105-Windward-Way-40-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60688;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"40-web-or-mls-2105-Windward-Way-40-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196931;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"40-web-or-mls-2105-Windward-Way-40-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2462;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129655;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113684;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129655;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(533,187,'_cs_attachment_import','c7d1f5891f255de2f64ebda16b8cde2d'),
(534,188,'_wp_attached_file','2024/11/38-web-or-mls-2105-Windward-Way-38.jpg'),
(535,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/38-web-or-mls-2105-Windward-Way-38.jpg\";s:8:\"filesize\";i:242489;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"38-web-or-mls-2105-Windward-Way-38-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11715;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"38-web-or-mls-2105-Windward-Way-38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5423;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"38-web-or-mls-2105-Windward-Way-38-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51863;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"38-web-or-mls-2105-Windward-Way-38-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160649;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"38-web-or-mls-2105-Windward-Way-38-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2447;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91424;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(536,188,'_cs_attachment_import','56b05115c22048498d9af740339e7269'),
(537,189,'_wp_attached_file','2024/11/20-web-or-mls-2105-Windward-Way-20.jpg'),
(538,189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/20-web-or-mls-2105-Windward-Way-20.jpg\";s:8:\"filesize\";i:417037;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"20-web-or-mls-2105-Windward-Way-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17182;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"20-web-or-mls-2105-Windward-Way-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"20-web-or-mls-2105-Windward-Way-20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85959;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"20-web-or-mls-2105-Windward-Way-20-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283482;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"20-web-or-mls-2105-Windward-Way-20-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3064;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186075;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158710;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186075;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158710;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(539,189,'_cs_attachment_import','aaa947b429fc1e0428e49884a71acfeb'),
(540,190,'_wp_attached_file','2024/11/21-web-or-mls-2105-Windward-Way-21.jpg'),
(541,190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/21-web-or-mls-2105-Windward-Way-21.jpg\";s:8:\"filesize\";i:359386;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"21-web-or-mls-2105-Windward-Way-21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15859;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"21-web-or-mls-2105-Windward-Way-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"21-web-or-mls-2105-Windward-Way-21-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78538;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"21-web-or-mls-2105-Windward-Way-21-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249519;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"21-web-or-mls-2105-Windward-Way-21-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2869;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137822;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137822;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(542,190,'_cs_attachment_import','73020f2888bb066f6d9a290aa6186cda'),
(543,191,'_wp_attached_file','2024/11/33-web-or-mls-2105-Windward-Way-33.jpg'),
(544,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/33-web-or-mls-2105-Windward-Way-33.jpg\";s:8:\"filesize\";i:333935;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"33-web-or-mls-2105-Windward-Way-33-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14011;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"33-web-or-mls-2105-Windward-Way-33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6381;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"33-web-or-mls-2105-Windward-Way-33-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65187;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"33-web-or-mls-2105-Windward-Way-33-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214937;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"33-web-or-mls-2105-Windward-Way-33-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2721;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140730;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121383;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140730;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(545,191,'_cs_attachment_import','9f7748e695c2c3bcea578f46ecc71340'),
(546,192,'_wp_attached_file','2024/11/32-web-or-mls-2105-Windward-Way-32.jpg'),
(547,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/32-web-or-mls-2105-Windward-Way-32.jpg\";s:8:\"filesize\";i:303801;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"32-web-or-mls-2105-Windward-Way-32-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12773;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"32-web-or-mls-2105-Windward-Way-32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6266;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"32-web-or-mls-2105-Windward-Way-32-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59604;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"32-web-or-mls-2105-Windward-Way-32-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196277;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"32-web-or-mls-2105-Windward-Way-32-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2571;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128236;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112444;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128236;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(548,192,'_cs_attachment_import','153ce8088e2748f5d746c98f2a2669a6'),
(549,193,'_wp_attached_file','2024/11/34-web-or-mls-2105-Windward-Way-34.jpg'),
(550,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/34-web-or-mls-2105-Windward-Way-34.jpg\";s:8:\"filesize\";i:417284;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"34-web-or-mls-2105-Windward-Way-34-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11249;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"34-web-or-mls-2105-Windward-Way-34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"34-web-or-mls-2105-Windward-Way-34-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54995;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"34-web-or-mls-2105-Windward-Way-34-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229715;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"34-web-or-mls-2105-Windward-Way-34-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2364;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134030;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117703;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134030;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(551,193,'_cs_attachment_import','f7dd429fa09e33ad82721738be6b344a'),
(552,194,'_wp_attached_file','2024/11/48-web-or-mls-2105-Windward-Way-49.jpg'),
(553,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:4:\"file\";s:46:\"2024/11/48-web-or-mls-2105-Windward-Way-49.jpg\";s:8:\"filesize\";i:404123;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"48-web-or-mls-2105-Windward-Way-49-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21430;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"48-web-or-mls-2105-Windward-Way-49-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"48-web-or-mls-2105-Windward-Way-49-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"48-web-or-mls-2105-Windward-Way-49-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259441;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:46:\"48-web-or-mls-2105-Windward-Way-49-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6269;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"48-web-or-mls-2105-Windward-Way-49-1024x671.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214283;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"48-web-or-mls-2105-Windward-Way-49-1024x671.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(554,194,'_cs_attachment_import','9300b8fe89f4943b7590873e25f1d59c'),
(555,195,'_wp_attached_file','2024/11/51-web-or-mls-2105-Windward-Way-52.jpg'),
(556,195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/51-web-or-mls-2105-Windward-Way-52.jpg\";s:8:\"filesize\";i:621718;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"51-web-or-mls-2105-Windward-Way-52-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20601;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"51-web-or-mls-2105-Windward-Way-52-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8361;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"51-web-or-mls-2105-Windward-Way-52-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117207;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"51-web-or-mls-2105-Windward-Way-52-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:411735;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"51-web-or-mls-2105-Windward-Way-52-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3080;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265316;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235344;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265316;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235344;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(557,195,'_cs_attachment_import','6c7e022b3e6b8d8d854f5e3b53e7e8a1'),
(558,196,'_wp_attached_file','2024/11/50-web-or-mls-2105-Windward-Way-51.jpg'),
(559,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/50-web-or-mls-2105-Windward-Way-51.jpg\";s:8:\"filesize\";i:647413;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"50-web-or-mls-2105-Windward-Way-51-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21506;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"50-web-or-mls-2105-Windward-Way-51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"50-web-or-mls-2105-Windward-Way-51-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120713;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"50-web-or-mls-2105-Windward-Way-51-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:423220;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"50-web-or-mls-2105-Windward-Way-51-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3223;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272520;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238323;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272520;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238323;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(560,196,'_cs_attachment_import','4f703e38638790783339f8015640e0cd'),
(561,197,'_wp_attached_file','2024/11/49-web-or-mls-2105-Windward-Way-50.jpg');
INSERT INTO `wp_postmeta` VALUES
(562,197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/49-web-or-mls-2105-Windward-Way-50.jpg\";s:8:\"filesize\";i:617145;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"49-web-or-mls-2105-Windward-Way-50-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21467;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"49-web-or-mls-2105-Windward-Way-50-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8571;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"49-web-or-mls-2105-Windward-Way-50-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119809;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"49-web-or-mls-2105-Windward-Way-50-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:412717;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"49-web-or-mls-2105-Windward-Way-50-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3265;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267973;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232557;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267973;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(563,197,'_cs_attachment_import','f2c073afdbf4e910409561321fb751d9'),
(564,198,'_wp_attached_file','2024/11/65-web-or-mls-2105-Windward-Way-61.jpg'),
(565,198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/65-web-or-mls-2105-Windward-Way-61.jpg\";s:8:\"filesize\";i:539596;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"65-web-or-mls-2105-Windward-Way-61-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17271;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"65-web-or-mls-2105-Windward-Way-61-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"65-web-or-mls-2105-Windward-Way-61-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93242;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"65-web-or-mls-2105-Windward-Way-61-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:331088;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"65-web-or-mls-2105-Windward-Way-61-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2939;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211944;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185470;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211944;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(566,198,'_cs_attachment_import','dfa9e4b1e045d52421cc8d46c6371adc'),
(567,199,'_wp_attached_file','2024/11/64-web-or-mls-2105-Windward-Way-60-2.jpg'),
(568,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/64-web-or-mls-2105-Windward-Way-60-2.jpg\";s:8:\"filesize\";i:679466;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"64-web-or-mls-2105-Windward-Way-60-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23205;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"64-web-or-mls-2105-Windward-Way-60-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"64-web-or-mls-2105-Windward-Way-60-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8856;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"64-web-or-mls-2105-Windward-Way-60-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132923;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"64-web-or-mls-2105-Windward-Way-60-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:455101;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"64-web-or-mls-2105-Windward-Way-60-2-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3304;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"64-web-or-mls-2105-Windward-Way-60-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296862;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"64-web-or-mls-2105-Windward-Way-60-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258379;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"64-web-or-mls-2105-Windward-Way-60-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296862;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"64-web-or-mls-2105-Windward-Way-60-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258379;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(569,199,'_cs_attachment_import','08495583e3df91f911e7374f2cc9b4fa'),
(570,200,'_wp_attached_file','2024/11/66-web-or-mls-2105-Windward-Way-62.jpg'),
(571,200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/66-web-or-mls-2105-Windward-Way-62.jpg\";s:8:\"filesize\";i:572681;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"66-web-or-mls-2105-Windward-Way-62-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15902;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"66-web-or-mls-2105-Windward-Way-62-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6538;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"66-web-or-mls-2105-Windward-Way-62-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93781;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"66-web-or-mls-2105-Windward-Way-62-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348432;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"66-web-or-mls-2105-Windward-Way-62-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2577;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219735;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198282;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219735;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198282;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(572,200,'_cs_attachment_import','ce4303b832b8a5fe3a2e4763d4ec9345'),
(573,201,'_wp_attached_file','2024/11/69-web-or-mls-2105-Windward-Way-65.jpg'),
(574,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/69-web-or-mls-2105-Windward-Way-65.jpg\";s:8:\"filesize\";i:916635;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"69-web-or-mls-2105-Windward-Way-65-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25600;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"69-web-or-mls-2105-Windward-Way-65-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10235;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"69-web-or-mls-2105-Windward-Way-65-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158022;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"69-web-or-mls-2105-Windward-Way-65-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:575761;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"69-web-or-mls-2105-Windward-Way-65-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3602;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368143;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313768;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368143;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(575,201,'_cs_attachment_import','9ebafbe4fe417016d1c3f0f0486c9638'),
(576,202,'_wp_attached_file','2024/11/68-web-or-mls-2105-Windward-Way-64.jpg'),
(577,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/68-web-or-mls-2105-Windward-Way-64.jpg\";s:8:\"filesize\";i:778105;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"68-web-or-mls-2105-Windward-Way-64-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25868;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"68-web-or-mls-2105-Windward-Way-64-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"68-web-or-mls-2105-Windward-Way-64-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152157;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"68-web-or-mls-2105-Windward-Way-64-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:525607;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"68-web-or-mls-2105-Windward-Way-64-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3664;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341691;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282970;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341691;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(578,202,'_cs_attachment_import','87cd98b9810e575457dfdee9531fc9ec'),
(579,203,'_wp_attached_file','2024/11/70-web-or-mls-2105-Windward-Way-66.jpg'),
(580,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/70-web-or-mls-2105-Windward-Way-66.jpg\";s:8:\"filesize\";i:755277;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"70-web-or-mls-2105-Windward-Way-66-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19615;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"70-web-or-mls-2105-Windward-Way-66-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"70-web-or-mls-2105-Windward-Way-66-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121660;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"70-web-or-mls-2105-Windward-Way-66-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:465969;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"70-web-or-mls-2105-Windward-Way-66-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2908;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291639;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254696;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291639;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(581,203,'_cs_attachment_import','ae5b55d241d048f6ed91781f65d1eece'),
(582,204,'_wp_attached_file','2024/11/55-web-or-mls-2105-Windward-Way-56.jpg'),
(583,204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/55-web-or-mls-2105-Windward-Way-56.jpg\";s:8:\"filesize\";i:461488;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"55-web-or-mls-2105-Windward-Way-56-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16154;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"55-web-or-mls-2105-Windward-Way-56-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"55-web-or-mls-2105-Windward-Way-56-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"55-web-or-mls-2105-Windward-Way-56-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286240;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"55-web-or-mls-2105-Windward-Way-56-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2756;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184453;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158814;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184453;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(584,204,'_cs_attachment_import','7436f0eeeeb74df3c6cb63c7e3103467'),
(585,205,'_wp_attached_file','2024/11/27-web-or-mls-2105-Windward-Way-27.jpg'),
(586,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/27-web-or-mls-2105-Windward-Way-27.jpg\";s:8:\"filesize\";i:394285;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"27-web-or-mls-2105-Windward-Way-27-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13097;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"27-web-or-mls-2105-Windward-Way-27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"27-web-or-mls-2105-Windward-Way-27-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68270;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"27-web-or-mls-2105-Windward-Way-27-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242886;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"27-web-or-mls-2105-Windward-Way-27-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2414;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154937;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132697;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154937;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132697;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,205,'_cs_attachment_import','82655fcf696dee7f75ec974be68a547c'),
(588,206,'_wp_attached_file','2024/11/25-web-or-mls-2105-Windward-Way-25.jpg'),
(589,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/25-web-or-mls-2105-Windward-Way-25.jpg\";s:8:\"filesize\";i:355928;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"25-web-or-mls-2105-Windward-Way-25-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11916;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"25-web-or-mls-2105-Windward-Way-25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"25-web-or-mls-2105-Windward-Way-25-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60696;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"25-web-or-mls-2105-Windward-Way-25-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216976;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"25-web-or-mls-2105-Windward-Way-25-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2230;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138102;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113133;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138102;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(590,206,'_cs_attachment_import','abffb2ef6ef47ff8a0f1f0cf59ce30ea'),
(591,207,'_wp_attached_file','2024/11/29-web-or-mls-2105-Windward-Way-29.jpg'),
(592,207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/29-web-or-mls-2105-Windward-Way-29.jpg\";s:8:\"filesize\";i:279733;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"29-web-or-mls-2105-Windward-Way-29-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9915;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"29-web-or-mls-2105-Windward-Way-29-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"29-web-or-mls-2105-Windward-Way-29-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51143;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"29-web-or-mls-2105-Windward-Way-29-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176505;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"29-web-or-mls-2105-Windward-Way-29-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1962;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113955;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97000;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113955;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(593,207,'_cs_attachment_import','a076521486cf31dae4bdb414c9bd73c0'),
(594,208,'_wp_attached_file','2024/11/28-web-or-mls-2105-Windward-Way-28.jpg'),
(595,208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/28-web-or-mls-2105-Windward-Way-28.jpg\";s:8:\"filesize\";i:344144;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"28-web-or-mls-2105-Windward-Way-28-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13276;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108979;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"28-web-or-mls-2105-Windward-Way-28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"28-web-or-mls-2105-Windward-Way-28-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65949;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"28-web-or-mls-2105-Windward-Way-28-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221511;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"28-web-or-mls-2105-Windward-Way-28-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2559;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143639;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120482;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143639;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(596,208,'_cs_attachment_import','27dc147ee82acabbab08ddde6658dd8d'),
(597,209,'_wp_attached_file','2024/11/63-web-or-mls-2105-Windward-Way-59-2.jpg'),
(598,209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/63-web-or-mls-2105-Windward-Way-59-2.jpg\";s:8:\"filesize\";i:728251;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"63-web-or-mls-2105-Windward-Way-59-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25173;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233503;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"63-web-or-mls-2105-Windward-Way-59-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"63-web-or-mls-2105-Windward-Way-59-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139663;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"63-web-or-mls-2105-Windward-Way-59-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:475709;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"63-web-or-mls-2105-Windward-Way-59-2-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3642;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310240;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262256;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310240;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262256;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(599,209,'_cs_attachment_import','41239fbea5340de30b9f84ae61fe4ed9'),
(600,210,'_wp_attached_file','2024/11/59-web-or-mls-2105-Windward-Way-58.jpg'),
(601,210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/59-web-or-mls-2105-Windward-Way-58.jpg\";s:8:\"filesize\";i:599610;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"59-web-or-mls-2105-Windward-Way-58-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18229;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"59-web-or-mls-2105-Windward-Way-58-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"59-web-or-mls-2105-Windward-Way-58-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7354;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"59-web-or-mls-2105-Windward-Way-58-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100258;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"59-web-or-mls-2105-Windward-Way-58-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363188;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"59-web-or-mls-2105-Windward-Way-58-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2974;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"59-web-or-mls-2105-Windward-Way-58-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230096;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"59-web-or-mls-2105-Windward-Way-58-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203461;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"59-web-or-mls-2105-Windward-Way-58-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230096;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"59-web-or-mls-2105-Windward-Way-58-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(602,210,'_cs_attachment_import','210de7902b72a4c116027ffcd2e642e8'),
(603,211,'_wp_attached_file','2024/11/56-web-or-mls-2105-Windward-Way-57.jpg'),
(604,211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/56-web-or-mls-2105-Windward-Way-57.jpg\";s:8:\"filesize\";i:471848;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"56-web-or-mls-2105-Windward-Way-57-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18262;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"56-web-or-mls-2105-Windward-Way-57-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7620;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"56-web-or-mls-2105-Windward-Way-57-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93181;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"56-web-or-mls-2105-Windward-Way-57-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:311830;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"56-web-or-mls-2105-Windward-Way-57-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2996;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203719;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176077;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203719;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(605,211,'_cs_attachment_import','88c9dd308d3f069e7c1296432dcf1e20'),
(606,212,'_wp_attached_file','2024/11/47-web-or-mls-2105-Windward-Way-48.jpg'),
(607,212,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/47-web-or-mls-2105-Windward-Way-48.jpg\";s:8:\"filesize\";i:566566;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"47-web-or-mls-2105-Windward-Way-48-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20420;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"47-web-or-mls-2105-Windward-Way-48-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"47-web-or-mls-2105-Windward-Way-48-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"47-web-or-mls-2105-Windward-Way-48-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:371337;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"47-web-or-mls-2105-Windward-Way-48-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3228;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240088;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210286;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240088;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(608,212,'_cs_attachment_import','501e82cb7a698b63085f7fe26dae872b'),
(609,213,'_wp_attached_file','2024/11/52-web-or-mls-2105-Windward-Way-53.jpg'),
(610,213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/52-web-or-mls-2105-Windward-Way-53.jpg\";s:8:\"filesize\";i:634296;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"52-web-or-mls-2105-Windward-Way-53-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19919;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"52-web-or-mls-2105-Windward-Way-53-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"52-web-or-mls-2105-Windward-Way-53-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109504;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"52-web-or-mls-2105-Windward-Way-53-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:389848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"52-web-or-mls-2105-Windward-Way-53-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3237;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249332;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220889;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249332;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(611,213,'_cs_attachment_import','995f5d098c717ebe8b8b2f9f071fc339'),
(612,214,'_wp_attached_file','2024/11/54-web-or-mls-2105-Windward-Way-55.jpg'),
(613,214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/54-web-or-mls-2105-Windward-Way-55.jpg\";s:8:\"filesize\";i:548412;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"54-web-or-mls-2105-Windward-Way-55-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18792;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170188;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"54-web-or-mls-2105-Windward-Way-55-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"54-web-or-mls-2105-Windward-Way-55-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"54-web-or-mls-2105-Windward-Way-55-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:351290;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"54-web-or-mls-2105-Windward-Way-55-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3178;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226517;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200115;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226517;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(614,214,'_cs_attachment_import','0b3f0f13650887a720fc37e74d53996a'),
(615,215,'_wp_attached_file','2024/11/67-web-or-mls-2105-Windward-Way-63.jpg'),
(616,215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/67-web-or-mls-2105-Windward-Way-63.jpg\";s:8:\"filesize\";i:632533;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"67-web-or-mls-2105-Windward-Way-63-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20826;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193201;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"67-web-or-mls-2105-Windward-Way-63-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8820;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"67-web-or-mls-2105-Windward-Way-63-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113868;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"67-web-or-mls-2105-Windward-Way-63-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:406543;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"67-web-or-mls-2105-Windward-Way-63-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3436;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259855;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230502;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259855;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(617,215,'_cs_attachment_import','16afccd1124d763ab6b174d7e20cb2c2'),
(618,216,'_wp_attached_file','2024/11/61-web-or-mls-2105-Windward-Way-47-2.jpg'),
(619,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/61-web-or-mls-2105-Windward-Way-47-2.jpg\";s:8:\"filesize\";i:655453;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"61-web-or-mls-2105-Windward-Way-47-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19045;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"61-web-or-mls-2105-Windward-Way-47-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"61-web-or-mls-2105-Windward-Way-47-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"61-web-or-mls-2105-Windward-Way-47-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109591;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"61-web-or-mls-2105-Windward-Way-47-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:408186;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"61-web-or-mls-2105-Windward-Way-47-2-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3069;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"61-web-or-mls-2105-Windward-Way-47-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256991;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"61-web-or-mls-2105-Windward-Way-47-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225693;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"61-web-or-mls-2105-Windward-Way-47-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256991;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"61-web-or-mls-2105-Windward-Way-47-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225693;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(620,216,'_cs_attachment_import','d326549f547a31f957fc7830db0371b7'),
(621,217,'_wp_attached_file','2024/11/11-web-or-mls-2105-Windward-Way-11.jpg'),
(622,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/11-web-or-mls-2105-Windward-Way-11.jpg\";s:8:\"filesize\";i:323774;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"11-web-or-mls-2105-Windward-Way-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14844;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"11-web-or-mls-2105-Windward-Way-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"11-web-or-mls-2105-Windward-Way-11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"11-web-or-mls-2105-Windward-Way-11-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209581;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"11-web-or-mls-2105-Windward-Way-11-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2743;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139737;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119140;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139737;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(623,217,'_cs_attachment_import','b82afef9efa9a0afa78e2f68f8df07ce'),
(624,218,'_wp_attached_file','2024/11/10-web-or-mls-2105-Windward-Way-10.jpg'),
(625,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/10-web-or-mls-2105-Windward-Way-10.jpg\";s:8:\"filesize\";i:272808;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"10-web-or-mls-2105-Windward-Way-10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12101;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"10-web-or-mls-2105-Windward-Way-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6011;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"10-web-or-mls-2105-Windward-Way-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53156;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"10-web-or-mls-2105-Windward-Way-10-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171508;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"10-web-or-mls-2105-Windward-Way-10-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2490;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112060;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93515;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112060;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93515;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(626,218,'_cs_attachment_import','bf2ecaed84e0956a0fb42654f7a60635'),
(627,219,'_wp_attached_file','2024/11/9-web-or-mls-2105-Windward-Way-9.jpg'),
(628,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/9-web-or-mls-2105-Windward-Way-9.jpg\";s:8:\"filesize\";i:323545;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"9-web-or-mls-2105-Windward-Way-9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14714;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"9-web-or-mls-2105-Windward-Way-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"9-web-or-mls-2105-Windward-Way-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66797;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"9-web-or-mls-2105-Windward-Way-9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208837;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"9-web-or-mls-2105-Windward-Way-9-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2828;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139056;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119759;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139056;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119759;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(629,219,'_cs_attachment_import','049cb88ea83e827cceb5f148276c979c'),
(630,220,'_wp_attached_file','2024/11/6-web-or-mls-2105-Windward-Way-6.jpg'),
(631,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/6-web-or-mls-2105-Windward-Way-6.jpg\";s:8:\"filesize\";i:253260;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"6-web-or-mls-2105-Windward-Way-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12583;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"6-web-or-mls-2105-Windward-Way-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5873;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"6-web-or-mls-2105-Windward-Way-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54106;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"6-web-or-mls-2105-Windward-Way-6-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166498;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"6-web-or-mls-2105-Windward-Way-6-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2577;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110893;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95576;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110893;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95576;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(632,220,'_cs_attachment_import','c0fcc8dc57c9ea7da1483e288ed9f646'),
(633,221,'_wp_attached_file','2024/11/7-web-or-mls-2105-Windward-Way-7.jpg'),
(634,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/7-web-or-mls-2105-Windward-Way-7.jpg\";s:8:\"filesize\";i:334620;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"7-web-or-mls-2105-Windward-Way-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15456;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109941;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"7-web-or-mls-2105-Windward-Way-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6852;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"7-web-or-mls-2105-Windward-Way-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68864;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"7-web-or-mls-2105-Windward-Way-7-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214192;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"7-web-or-mls-2105-Windward-Way-7-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2850;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142213;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121521;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142213;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(635,221,'_cs_attachment_import','8c7aaed049b73e767ff01158c222a7c7'),
(636,222,'_wp_attached_file','2024/11/22-web-or-mls-2105-Windward-Way-22.jpg'),
(637,222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/22-web-or-mls-2105-Windward-Way-22.jpg\";s:8:\"filesize\";i:274261;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"22-web-or-mls-2105-Windward-Way-22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11993;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"22-web-or-mls-2105-Windward-Way-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"22-web-or-mls-2105-Windward-Way-22-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54311;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"22-web-or-mls-2105-Windward-Way-22-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175585;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"22-web-or-mls-2105-Windward-Way-22-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2561;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115608;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98910;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115608;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(638,222,'_cs_attachment_import','181c253a18a2c1d18ccb1094c22b46fc'),
(639,223,'_wp_attached_file','2024/11/16-web-or-mls-2105-Windward-Way-16.jpg'),
(640,223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/16-web-or-mls-2105-Windward-Way-16.jpg\";s:8:\"filesize\";i:258324;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"16-web-or-mls-2105-Windward-Way-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13290;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"16-web-or-mls-2105-Windward-Way-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6307;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"16-web-or-mls-2105-Windward-Way-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57784;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"16-web-or-mls-2105-Windward-Way-16-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171366;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"16-web-or-mls-2105-Windward-Way-16-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2644;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116474;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102941;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116474;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102941;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(641,223,'_cs_attachment_import','fa79cfe6cae11ef33cdd9e0ca745bb58'),
(642,224,'_wp_attached_file','2024/11/14-web-or-mls-2105-Windward-Way-14.jpg'),
(643,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/14-web-or-mls-2105-Windward-Way-14.jpg\";s:8:\"filesize\";i:269888;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"14-web-or-mls-2105-Windward-Way-14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13435;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95497;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"14-web-or-mls-2105-Windward-Way-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5453;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"14-web-or-mls-2105-Windward-Way-14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"14-web-or-mls-2105-Windward-Way-14-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180366;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"14-web-or-mls-2105-Windward-Way-14-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2624;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122399;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103824;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122399;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(644,224,'_cs_attachment_import','5290284adbdecdece12eaab79ec9c612'),
(645,225,'_wp_attached_file','2024/11/17-web-or-mls-2105-Windward-Way-17.jpg'),
(646,225,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/17-web-or-mls-2105-Windward-Way-17.jpg\";s:8:\"filesize\";i:255433;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"17-web-or-mls-2105-Windward-Way-17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12204;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"17-web-or-mls-2105-Windward-Way-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"17-web-or-mls-2105-Windward-Way-17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53932;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"17-web-or-mls-2105-Windward-Way-17-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167754;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"17-web-or-mls-2105-Windward-Way-17-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2527;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112123;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97596;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112123;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(647,225,'_cs_attachment_import','a4d0b849987de30cb570c307ecacb730'),
(648,226,'_wp_attached_file','2024/11/12-web-or-mls-2105-Windward-Way-12.jpg'),
(649,226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1375;s:4:\"file\";s:46:\"2024/11/12-web-or-mls-2105-Windward-Way-12.jpg\";s:8:\"filesize\";i:170133;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"12-web-or-mls-2105-Windward-Way-12-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8702;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59846;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"12-web-or-mls-2105-Windward-Way-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"12-web-or-mls-2105-Windward-Way-12-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38078;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"12-web-or-mls-2105-Windward-Way-12-1536x1031.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1031;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114886;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"12-web-or-mls-2105-Windward-Way-12-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1868;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1200x806.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77609;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64403;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1200x806.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77609;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(650,226,'_cs_attachment_import','9e24cb756b0234de531bb5f2ba1dc9fd'),
(651,227,'_wp_attached_file','2024/11/19-web-or-mls-2105-Windward-Way-19.jpg'),
(652,227,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/19-web-or-mls-2105-Windward-Way-19.jpg\";s:8:\"filesize\";i:263657;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"19-web-or-mls-2105-Windward-Way-19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11789;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"19-web-or-mls-2105-Windward-Way-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"19-web-or-mls-2105-Windward-Way-19-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54790;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"19-web-or-mls-2105-Windward-Way-19-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173777;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"19-web-or-mls-2105-Windward-Way-19-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2299;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115233;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100300;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115233;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(653,227,'_cs_attachment_import','4ae328541692ebd02ea4c2cdb9bdf3cc'),
(654,228,'_wp_attached_file','2024/11/13-web-or-mls-2105-Windward-Way-13.jpg'),
(655,228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/13-web-or-mls-2105-Windward-Way-13.jpg\";s:8:\"filesize\";i:365611;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"13-web-or-mls-2105-Windward-Way-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14095;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"13-web-or-mls-2105-Windward-Way-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6425;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"13-web-or-mls-2105-Windward-Way-13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70072;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"13-web-or-mls-2105-Windward-Way-13-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231201;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"13-web-or-mls-2105-Windward-Way-13-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150550;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131106;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150550;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(656,228,'_cs_attachment_import','e1e4b15706c6da0bb6706ead29f41fef'),
(657,229,'_wp_attached_file','2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg'),
(658,229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\";s:8:\"filesize\";i:394285;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"27-web-or-mls-2105-Windward-Way-27-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13097;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"27-web-or-mls-2105-Windward-Way-27-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"27-web-or-mls-2105-Windward-Way-27-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"27-web-or-mls-2105-Windward-Way-27-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68270;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"27-web-or-mls-2105-Windward-Way-27-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242886;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"27-web-or-mls-2105-Windward-Way-27-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2414;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"27-web-or-mls-2105-Windward-Way-27-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154937;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"27-web-or-mls-2105-Windward-Way-27-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132697;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"27-web-or-mls-2105-Windward-Way-27-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154937;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"27-web-or-mls-2105-Windward-Way-27-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132697;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(659,229,'_cs_attachment_import','41173a80a1ea09ab628d3462c2676250'),
(660,230,'_wp_attached_file','2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg'),
(661,230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\";s:8:\"filesize\";i:355928;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"25-web-or-mls-2105-Windward-Way-25-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11916;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"25-web-or-mls-2105-Windward-Way-25-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"25-web-or-mls-2105-Windward-Way-25-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"25-web-or-mls-2105-Windward-Way-25-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60696;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"25-web-or-mls-2105-Windward-Way-25-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216976;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"25-web-or-mls-2105-Windward-Way-25-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2230;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"25-web-or-mls-2105-Windward-Way-25-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138102;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"25-web-or-mls-2105-Windward-Way-25-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113133;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"25-web-or-mls-2105-Windward-Way-25-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138102;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"25-web-or-mls-2105-Windward-Way-25-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113133;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(662,230,'_cs_attachment_import','3cd497b9e42ccace40db22a91b36c310'),
(663,231,'_wp_attached_file','2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg'),
(664,231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\";s:8:\"filesize\";i:279733;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"29-web-or-mls-2105-Windward-Way-29-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9915;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"29-web-or-mls-2105-Windward-Way-29-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"29-web-or-mls-2105-Windward-Way-29-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"29-web-or-mls-2105-Windward-Way-29-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51143;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"29-web-or-mls-2105-Windward-Way-29-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176505;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"29-web-or-mls-2105-Windward-Way-29-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1962;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"29-web-or-mls-2105-Windward-Way-29-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113955;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"29-web-or-mls-2105-Windward-Way-29-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97000;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"29-web-or-mls-2105-Windward-Way-29-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113955;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"29-web-or-mls-2105-Windward-Way-29-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(665,231,'_cs_attachment_import','13e38c0f878ca46623991ecb77e4a797'),
(666,232,'_wp_attached_file','2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg'),
(667,232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\";s:8:\"filesize\";i:344144;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"28-web-or-mls-2105-Windward-Way-28-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13276;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"28-web-or-mls-2105-Windward-Way-28-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108979;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"28-web-or-mls-2105-Windward-Way-28-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"28-web-or-mls-2105-Windward-Way-28-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65949;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"28-web-or-mls-2105-Windward-Way-28-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221511;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"28-web-or-mls-2105-Windward-Way-28-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2559;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"28-web-or-mls-2105-Windward-Way-28-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143639;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"28-web-or-mls-2105-Windward-Way-28-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120482;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"28-web-or-mls-2105-Windward-Way-28-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143639;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"28-web-or-mls-2105-Windward-Way-28-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(668,232,'_cs_attachment_import','ae73b86e283062d22a200aa3d5812750'),
(669,233,'_wp_attached_file','2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg'),
(670,233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\";s:8:\"filesize\";i:367768;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"24-web-or-mls-2105-Windward-Way-24-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12696;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"24-web-or-mls-2105-Windward-Way-24-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"24-web-or-mls-2105-Windward-Way-24-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"24-web-or-mls-2105-Windward-Way-24-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65395;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"24-web-or-mls-2105-Windward-Way-24-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227930;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"24-web-or-mls-2105-Windward-Way-24-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2318;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"24-web-or-mls-2105-Windward-Way-24-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145631;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"24-web-or-mls-2105-Windward-Way-24-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127698;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"24-web-or-mls-2105-Windward-Way-24-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145631;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"24-web-or-mls-2105-Windward-Way-24-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(671,233,'_cs_attachment_import','6cbe5fe9f6053920762a227e1656f11e'),
(672,234,'_wp_attached_file','2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg'),
(673,234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\";s:8:\"filesize\";i:257889;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"30-web-or-mls-2105-Windward-Way-30-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10862;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"30-web-or-mls-2105-Windward-Way-30-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84687;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"30-web-or-mls-2105-Windward-Way-30-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"30-web-or-mls-2105-Windward-Way-30-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"30-web-or-mls-2105-Windward-Way-30-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168428;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"30-web-or-mls-2105-Windward-Way-30-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2233;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"30-web-or-mls-2105-Windward-Way-30-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110483;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"30-web-or-mls-2105-Windward-Way-30-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89981;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"30-web-or-mls-2105-Windward-Way-30-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110483;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"30-web-or-mls-2105-Windward-Way-30-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(674,234,'_cs_attachment_import','5315c9bb2a3d1928e9a92c51fb18d5fa'),
(675,235,'_wp_attached_file','2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg'),
(676,235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\";s:8:\"filesize\";i:335708;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"31-web-or-mls-2105-Windward-Way-31-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12012;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"31-web-or-mls-2105-Windward-Way-31-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"31-web-or-mls-2105-Windward-Way-31-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5169;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"31-web-or-mls-2105-Windward-Way-31-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62088;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"31-web-or-mls-2105-Windward-Way-31-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210910;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"31-web-or-mls-2105-Windward-Way-31-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2237;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"31-web-or-mls-2105-Windward-Way-31-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136800;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"31-web-or-mls-2105-Windward-Way-31-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110950;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"31-web-or-mls-2105-Windward-Way-31-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136800;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"31-web-or-mls-2105-Windward-Way-31-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(677,235,'_cs_attachment_import','76bdb865cd7b8765b1cf420413e79953'),
(678,236,'_wp_attached_file','2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg'),
(679,236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\";s:8:\"filesize\";i:341402;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"35-web-or-mls-2105-Windward-Way-35-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13018;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"35-web-or-mls-2105-Windward-Way-35-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"35-web-or-mls-2105-Windward-Way-35-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"35-web-or-mls-2105-Windward-Way-35-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66759;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"35-web-or-mls-2105-Windward-Way-35-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223486;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"35-web-or-mls-2105-Windward-Way-35-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2398;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"35-web-or-mls-2105-Windward-Way-35-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145870;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"35-web-or-mls-2105-Windward-Way-35-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121234;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"35-web-or-mls-2105-Windward-Way-35-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145870;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"35-web-or-mls-2105-Windward-Way-35-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(680,236,'_cs_attachment_import','deea84be4f29870a0022767c6bd6b6ff'),
(681,237,'_wp_attached_file','2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg'),
(682,237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\";s:8:\"filesize\";i:265430;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"37-web-or-mls-2105-Windward-Way-37-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10747;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"37-web-or-mls-2105-Windward-Way-37-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"37-web-or-mls-2105-Windward-Way-37-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"37-web-or-mls-2105-Windward-Way-37-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52597;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"37-web-or-mls-2105-Windward-Way-37-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174487;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"37-web-or-mls-2105-Windward-Way-37-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2111;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"37-web-or-mls-2105-Windward-Way-37-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113848;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"37-web-or-mls-2105-Windward-Way-37-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98158;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"37-web-or-mls-2105-Windward-Way-37-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113848;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"37-web-or-mls-2105-Windward-Way-37-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(683,237,'_cs_attachment_import','6f90ed9aa6d50e2d319a80fe8694a4c3'),
(684,238,'_wp_attached_file','2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg'),
(685,238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\";s:8:\"filesize\";i:382855;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"42-web-or-mls-2105-Windward-Way-42-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15361;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"42-web-or-mls-2105-Windward-Way-42-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"42-web-or-mls-2105-Windward-Way-42-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"42-web-or-mls-2105-Windward-Way-42-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76686;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"42-web-or-mls-2105-Windward-Way-42-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254435;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"42-web-or-mls-2105-Windward-Way-42-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2870;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"42-web-or-mls-2105-Windward-Way-42-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167205;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"42-web-or-mls-2105-Windward-Way-42-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139670;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"42-web-or-mls-2105-Windward-Way-42-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167205;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"42-web-or-mls-2105-Windward-Way-42-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(686,238,'_cs_attachment_import','b4beb0973621f3aaf11313427ed1f1eb'),
(687,239,'_wp_attached_file','2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg'),
(688,239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\";s:8:\"filesize\";i:318390;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"36-web-or-mls-2105-Windward-Way-36-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12656;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"36-web-or-mls-2105-Windward-Way-36-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"36-web-or-mls-2105-Windward-Way-36-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5293;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"36-web-or-mls-2105-Windward-Way-36-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62911;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"36-web-or-mls-2105-Windward-Way-36-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207216;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"36-web-or-mls-2105-Windward-Way-36-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2412;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"36-web-or-mls-2105-Windward-Way-36-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136115;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"36-web-or-mls-2105-Windward-Way-36-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121968;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"36-web-or-mls-2105-Windward-Way-36-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136115;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"36-web-or-mls-2105-Windward-Way-36-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(689,239,'_cs_attachment_import','d288a6c5f8202efe87ca0359ae3219af'),
(690,240,'_wp_attached_file','2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg'),
(691,240,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\";s:8:\"filesize\";i:413218;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"43-web-or-mls-2105-Windward-Way-43-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15665;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"43-web-or-mls-2105-Windward-Way-43-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"43-web-or-mls-2105-Windward-Way-43-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7035;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"43-web-or-mls-2105-Windward-Way-43-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75617;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"43-web-or-mls-2105-Windward-Way-43-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255490;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"43-web-or-mls-2105-Windward-Way-43-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3007;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"43-web-or-mls-2105-Windward-Way-43-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"43-web-or-mls-2105-Windward-Way-43-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146916;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"43-web-or-mls-2105-Windward-Way-43-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"43-web-or-mls-2105-Windward-Way-43-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146916;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(692,240,'_cs_attachment_import','29dec0ce048bfaf948571836a77f52b3'),
(693,241,'_wp_attached_file','2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg'),
(694,241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\";s:8:\"filesize\";i:225950;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"44-web-or-mls-2105-Windward-Way-44-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10579;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"44-web-or-mls-2105-Windward-Way-44-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"44-web-or-mls-2105-Windward-Way-44-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"44-web-or-mls-2105-Windward-Way-44-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47620;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"44-web-or-mls-2105-Windward-Way-44-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149107;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"44-web-or-mls-2105-Windward-Way-44-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2140;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"44-web-or-mls-2105-Windward-Way-44-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99469;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"44-web-or-mls-2105-Windward-Way-44-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87975;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"44-web-or-mls-2105-Windward-Way-44-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99469;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"44-web-or-mls-2105-Windward-Way-44-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87975;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(695,241,'_cs_attachment_import','db2a8cc3ca07fcf53a7678a06d8bd650'),
(696,242,'_wp_attached_file','2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg'),
(697,242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\";s:8:\"filesize\";i:253901;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"39-web-or-mls-2105-Windward-Way-39-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12067;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"39-web-or-mls-2105-Windward-Way-39-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"39-web-or-mls-2105-Windward-Way-39-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5828;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"39-web-or-mls-2105-Windward-Way-39-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53396;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"39-web-or-mls-2105-Windward-Way-39-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167212;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"39-web-or-mls-2105-Windward-Way-39-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2488;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"39-web-or-mls-2105-Windward-Way-39-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110994;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"39-web-or-mls-2105-Windward-Way-39-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98835;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"39-web-or-mls-2105-Windward-Way-39-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110994;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"39-web-or-mls-2105-Windward-Way-39-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98835;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(698,242,'_cs_attachment_import','27b11a74577333e77f4a1de235367eed'),
(699,243,'_wp_attached_file','2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg'),
(700,243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\";s:8:\"filesize\";i:300739;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"40-web-or-mls-2105-Windward-Way-40-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12835;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"40-web-or-mls-2105-Windward-Way-40-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"40-web-or-mls-2105-Windward-Way-40-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5700;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"40-web-or-mls-2105-Windward-Way-40-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60688;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"40-web-or-mls-2105-Windward-Way-40-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196931;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"40-web-or-mls-2105-Windward-Way-40-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2462;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"40-web-or-mls-2105-Windward-Way-40-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129655;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"40-web-or-mls-2105-Windward-Way-40-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113684;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"40-web-or-mls-2105-Windward-Way-40-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129655;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"40-web-or-mls-2105-Windward-Way-40-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(701,243,'_cs_attachment_import','ee225352c0845bf0ca15136bf5ba2ce3'),
(702,244,'_wp_attached_file','2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg'),
(703,244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\";s:8:\"filesize\";i:242489;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"38-web-or-mls-2105-Windward-Way-38-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11715;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"38-web-or-mls-2105-Windward-Way-38-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"38-web-or-mls-2105-Windward-Way-38-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5423;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"38-web-or-mls-2105-Windward-Way-38-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51863;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"38-web-or-mls-2105-Windward-Way-38-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160649;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"38-web-or-mls-2105-Windward-Way-38-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2447;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"38-web-or-mls-2105-Windward-Way-38-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"38-web-or-mls-2105-Windward-Way-38-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91424;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"38-web-or-mls-2105-Windward-Way-38-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107131;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"38-web-or-mls-2105-Windward-Way-38-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(704,244,'_cs_attachment_import','bf5221de3181f3f318b5259cb7fd32e8'),
(705,245,'_wp_attached_file','2024/11/4-web-or-mls-2105-Windward-Way-4.jpg'),
(706,245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/4-web-or-mls-2105-Windward-Way-4.jpg\";s:8:\"filesize\";i:665135;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"4-web-or-mls-2105-Windward-Way-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19263;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194657;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"4-web-or-mls-2105-Windward-Way-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"4-web-or-mls-2105-Windward-Way-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112809;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"4-web-or-mls-2105-Windward-Way-4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:418222;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"4-web-or-mls-2105-Windward-Way-4-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3142;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264040;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229510;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264040;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(707,245,'_cs_attachment_import','11cfd649fe5c427cfec3c28be4fcfc20'),
(708,246,'_wp_attached_file','2024/11/3-web-or-mls-2105-Windward-Way-3.jpg'),
(709,246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/3-web-or-mls-2105-Windward-Way-3.jpg\";s:8:\"filesize\";i:871688;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"3-web-or-mls-2105-Windward-Way-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21836;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"3-web-or-mls-2105-Windward-Way-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8543;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"3-web-or-mls-2105-Windward-Way-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134791;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"3-web-or-mls-2105-Windward-Way-3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:526312;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"3-web-or-mls-2105-Windward-Way-3-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3272;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326743;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280726;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326743;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(710,246,'_cs_attachment_import','13b6541f0807bd8523c5c92a050d2487'),
(711,247,'_wp_attached_file','2024/11/5-web-or-mls-2105-Windward-Way-5.jpg'),
(712,247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/5-web-or-mls-2105-Windward-Way-5.jpg\";s:8:\"filesize\";i:299149;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"5-web-or-mls-2105-Windward-Way-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12080;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"5-web-or-mls-2105-Windward-Way-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"5-web-or-mls-2105-Windward-Way-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57428;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"5-web-or-mls-2105-Windward-Way-5-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198833;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"5-web-or-mls-2105-Windward-Way-5-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2451;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126574;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101101;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126574;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(713,247,'_cs_attachment_import','e2aaf22ed889587b8dbeab68019d2e78'),
(714,248,'_wp_attached_file','2024/11/1-web-or-mls-2105-Windward-Way-1.jpg'),
(715,248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:44:\"2024/11/1-web-or-mls-2105-Windward-Way-1.jpg\";s:8:\"filesize\";i:671187;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"1-web-or-mls-2105-Windward-Way-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19209;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"1-web-or-mls-2105-Windward-Way-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"1-web-or-mls-2105-Windward-Way-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110998;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"1-web-or-mls-2105-Windward-Way-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:413459;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:43:\"1-web-or-mls-2105-Windward-Way-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2971;}s:5:\"entry\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260147;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228324;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260147;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(716,248,'_cs_attachment_import','893db4edd063f3e39a8f658e5a8ff544'),
(717,249,'_wp_attached_file','2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg'),
(718,249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg\";s:8:\"filesize\";i:255433;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"17-web-or-mls-2105-Windward-Way-17-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12204;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"17-web-or-mls-2105-Windward-Way-17-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"17-web-or-mls-2105-Windward-Way-17-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"17-web-or-mls-2105-Windward-Way-17-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53932;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"17-web-or-mls-2105-Windward-Way-17-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167754;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"17-web-or-mls-2105-Windward-Way-17-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2527;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"17-web-or-mls-2105-Windward-Way-17-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112123;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"17-web-or-mls-2105-Windward-Way-17-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97596;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"17-web-or-mls-2105-Windward-Way-17-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112123;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"17-web-or-mls-2105-Windward-Way-17-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(719,249,'_cs_attachment_import','10affa8a7df530013e41291ef99cdc79'),
(720,250,'_wp_attached_file','2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg'),
(721,250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1375;s:4:\"file\";s:48:\"2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg\";s:8:\"filesize\";i:170133;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"12-web-or-mls-2105-Windward-Way-12-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8702;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"12-web-or-mls-2105-Windward-Way-12-1-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59846;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"12-web-or-mls-2105-Windward-Way-12-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"12-web-or-mls-2105-Windward-Way-12-1-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38078;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"12-web-or-mls-2105-Windward-Way-12-1-1536x1031.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1031;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114886;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"12-web-or-mls-2105-Windward-Way-12-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1868;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"12-web-or-mls-2105-Windward-Way-12-1-1200x806.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77609;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"12-web-or-mls-2105-Windward-Way-12-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64403;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"12-web-or-mls-2105-Windward-Way-12-1-1200x806.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77609;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"12-web-or-mls-2105-Windward-Way-12-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(722,250,'_cs_attachment_import','0d542304adf0bf13f88b8922fdcb01a5'),
(723,251,'_wp_attached_file','2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg'),
(724,251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg\";s:8:\"filesize\";i:263657;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"19-web-or-mls-2105-Windward-Way-19-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11789;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"19-web-or-mls-2105-Windward-Way-19-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"19-web-or-mls-2105-Windward-Way-19-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"19-web-or-mls-2105-Windward-Way-19-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54790;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"19-web-or-mls-2105-Windward-Way-19-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173777;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"19-web-or-mls-2105-Windward-Way-19-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2299;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"19-web-or-mls-2105-Windward-Way-19-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115233;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"19-web-or-mls-2105-Windward-Way-19-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100300;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"19-web-or-mls-2105-Windward-Way-19-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115233;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"19-web-or-mls-2105-Windward-Way-19-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(725,251,'_cs_attachment_import','40db08eee93befa2606197b401acd0a5'),
(726,252,'_wp_attached_file','2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg'),
(727,252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg\";s:8:\"filesize\";i:365611;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"13-web-or-mls-2105-Windward-Way-13-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14095;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"13-web-or-mls-2105-Windward-Way-13-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"13-web-or-mls-2105-Windward-Way-13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6425;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"13-web-or-mls-2105-Windward-Way-13-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70072;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"13-web-or-mls-2105-Windward-Way-13-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231201;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"13-web-or-mls-2105-Windward-Way-13-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"13-web-or-mls-2105-Windward-Way-13-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150550;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"13-web-or-mls-2105-Windward-Way-13-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131106;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"13-web-or-mls-2105-Windward-Way-13-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150550;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"13-web-or-mls-2105-Windward-Way-13-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(728,252,'_cs_attachment_import','16a21b5b79b65bb6895ed8f709883d4e'),
(729,253,'_wp_attached_file','2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg'),
(730,253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg\";s:8:\"filesize\";i:417037;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"20-web-or-mls-2105-Windward-Way-20-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17182;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"20-web-or-mls-2105-Windward-Way-20-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"20-web-or-mls-2105-Windward-Way-20-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"20-web-or-mls-2105-Windward-Way-20-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85959;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"20-web-or-mls-2105-Windward-Way-20-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283482;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"20-web-or-mls-2105-Windward-Way-20-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3064;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"20-web-or-mls-2105-Windward-Way-20-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186075;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"20-web-or-mls-2105-Windward-Way-20-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158710;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"20-web-or-mls-2105-Windward-Way-20-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186075;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"20-web-or-mls-2105-Windward-Way-20-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158710;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(731,253,'_cs_attachment_import','f59dac03b39aab6e1c84d4069fbfcb33'),
(732,254,'_wp_attached_file','2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg'),
(733,254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg\";s:8:\"filesize\";i:359386;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"21-web-or-mls-2105-Windward-Way-21-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15859;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"21-web-or-mls-2105-Windward-Way-21-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"21-web-or-mls-2105-Windward-Way-21-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"21-web-or-mls-2105-Windward-Way-21-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78538;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"21-web-or-mls-2105-Windward-Way-21-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249519;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"21-web-or-mls-2105-Windward-Way-21-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2869;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"21-web-or-mls-2105-Windward-Way-21-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"21-web-or-mls-2105-Windward-Way-21-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137822;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"21-web-or-mls-2105-Windward-Way-21-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165017;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"21-web-or-mls-2105-Windward-Way-21-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137822;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(734,254,'_cs_attachment_import','7667ccaed23b1a6449f8be6371a8e787'),
(735,255,'_wp_attached_file','2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg'),
(736,255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg\";s:8:\"filesize\";i:333935;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"33-web-or-mls-2105-Windward-Way-33-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14011;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"33-web-or-mls-2105-Windward-Way-33-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"33-web-or-mls-2105-Windward-Way-33-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6381;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"33-web-or-mls-2105-Windward-Way-33-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65187;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"33-web-or-mls-2105-Windward-Way-33-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214937;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"33-web-or-mls-2105-Windward-Way-33-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2721;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"33-web-or-mls-2105-Windward-Way-33-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140730;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"33-web-or-mls-2105-Windward-Way-33-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121383;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"33-web-or-mls-2105-Windward-Way-33-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140730;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"33-web-or-mls-2105-Windward-Way-33-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(737,255,'_cs_attachment_import','904c5486739466813a39765cbf4f52ea'),
(738,256,'_wp_attached_file','2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg'),
(739,256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg\";s:8:\"filesize\";i:303801;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"32-web-or-mls-2105-Windward-Way-32-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12773;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"32-web-or-mls-2105-Windward-Way-32-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"32-web-or-mls-2105-Windward-Way-32-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6266;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"32-web-or-mls-2105-Windward-Way-32-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59604;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"32-web-or-mls-2105-Windward-Way-32-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196277;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"32-web-or-mls-2105-Windward-Way-32-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2571;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"32-web-or-mls-2105-Windward-Way-32-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128236;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"32-web-or-mls-2105-Windward-Way-32-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112444;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"32-web-or-mls-2105-Windward-Way-32-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128236;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"32-web-or-mls-2105-Windward-Way-32-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(740,256,'_cs_attachment_import','03fd4d23c573a9b0b4a2cbb944d54d97'),
(741,257,'_wp_attached_file','2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg'),
(742,257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg\";s:8:\"filesize\";i:417284;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"34-web-or-mls-2105-Windward-Way-34-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11249;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"34-web-or-mls-2105-Windward-Way-34-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"34-web-or-mls-2105-Windward-Way-34-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"34-web-or-mls-2105-Windward-Way-34-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54995;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"34-web-or-mls-2105-Windward-Way-34-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229715;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"34-web-or-mls-2105-Windward-Way-34-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2364;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"34-web-or-mls-2105-Windward-Way-34-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134030;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"34-web-or-mls-2105-Windward-Way-34-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117703;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"34-web-or-mls-2105-Windward-Way-34-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134030;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"34-web-or-mls-2105-Windward-Way-34-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(743,257,'_cs_attachment_import','581eb77702e6b49d060ae1fbcbca0637'),
(744,258,'_wp_attached_file','2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg'),
(745,258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:4:\"file\";s:48:\"2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\";s:8:\"filesize\";i:404123;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"48-web-or-mls-2105-Windward-Way-49-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21430;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"48-web-or-mls-2105-Windward-Way-49-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"48-web-or-mls-2105-Windward-Way-49-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"48-web-or-mls-2105-Windward-Way-49-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259441;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:48:\"48-web-or-mls-2105-Windward-Way-49-1-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6269;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"48-web-or-mls-2105-Windward-Way-49-1-1024x671.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214283;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"48-web-or-mls-2105-Windward-Way-49-1-1024x671.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(746,258,'_cs_attachment_import','962c3feb3214495aa4d7742ba4d6becf'),
(747,259,'_wp_attached_file','2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg'),
(748,259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\";s:8:\"filesize\";i:621718;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"51-web-or-mls-2105-Windward-Way-52-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20601;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"51-web-or-mls-2105-Windward-Way-52-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"51-web-or-mls-2105-Windward-Way-52-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8361;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"51-web-or-mls-2105-Windward-Way-52-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117207;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"51-web-or-mls-2105-Windward-Way-52-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:411735;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"51-web-or-mls-2105-Windward-Way-52-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3080;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"51-web-or-mls-2105-Windward-Way-52-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265316;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"51-web-or-mls-2105-Windward-Way-52-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235344;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"51-web-or-mls-2105-Windward-Way-52-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265316;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"51-web-or-mls-2105-Windward-Way-52-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235344;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(749,259,'_cs_attachment_import','e333b58b88dc61ef4b69a81c1da66764'),
(750,260,'_wp_attached_file','2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg'),
(751,260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\";s:8:\"filesize\";i:647413;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"50-web-or-mls-2105-Windward-Way-51-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21506;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"50-web-or-mls-2105-Windward-Way-51-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"50-web-or-mls-2105-Windward-Way-51-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"50-web-or-mls-2105-Windward-Way-51-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120713;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"50-web-or-mls-2105-Windward-Way-51-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:423220;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"50-web-or-mls-2105-Windward-Way-51-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3223;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"50-web-or-mls-2105-Windward-Way-51-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272520;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"50-web-or-mls-2105-Windward-Way-51-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238323;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"50-web-or-mls-2105-Windward-Way-51-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272520;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"50-web-or-mls-2105-Windward-Way-51-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238323;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(752,260,'_cs_attachment_import','21dd7ae78f67133fdf8c473a41dab495'),
(753,261,'_wp_attached_file','2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg'),
(754,261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\";s:8:\"filesize\";i:617145;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"49-web-or-mls-2105-Windward-Way-50-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21467;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"49-web-or-mls-2105-Windward-Way-50-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"49-web-or-mls-2105-Windward-Way-50-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8571;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"49-web-or-mls-2105-Windward-Way-50-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119809;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"49-web-or-mls-2105-Windward-Way-50-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:412717;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"49-web-or-mls-2105-Windward-Way-50-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3265;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"49-web-or-mls-2105-Windward-Way-50-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267973;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"49-web-or-mls-2105-Windward-Way-50-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232557;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"49-web-or-mls-2105-Windward-Way-50-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267973;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"49-web-or-mls-2105-Windward-Way-50-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(755,261,'_cs_attachment_import','3dd33f13c5867cc2addc1dc42831bf28'),
(756,262,'_wp_attached_file','2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg'),
(757,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\";s:8:\"filesize\";i:539596;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"65-web-or-mls-2105-Windward-Way-61-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17271;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"65-web-or-mls-2105-Windward-Way-61-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"65-web-or-mls-2105-Windward-Way-61-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"65-web-or-mls-2105-Windward-Way-61-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93242;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"65-web-or-mls-2105-Windward-Way-61-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:331088;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"65-web-or-mls-2105-Windward-Way-61-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2939;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"65-web-or-mls-2105-Windward-Way-61-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211944;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"65-web-or-mls-2105-Windward-Way-61-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185470;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"65-web-or-mls-2105-Windward-Way-61-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211944;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"65-web-or-mls-2105-Windward-Way-61-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(758,262,'_cs_attachment_import','d97065c9eef12740b6bfa6838fcfff0b'),
(759,263,'_wp_attached_file','2024/11/57-web-or-mls-2105-Windward-Way-60.jpg'),
(760,263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\";s:8:\"filesize\";i:679466;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"57-web-or-mls-2105-Windward-Way-60-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23205;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"57-web-or-mls-2105-Windward-Way-60-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"57-web-or-mls-2105-Windward-Way-60-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8856;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"57-web-or-mls-2105-Windward-Way-60-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132923;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"57-web-or-mls-2105-Windward-Way-60-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:455101;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"57-web-or-mls-2105-Windward-Way-60-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3304;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"57-web-or-mls-2105-Windward-Way-60-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296862;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"57-web-or-mls-2105-Windward-Way-60-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258379;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"57-web-or-mls-2105-Windward-Way-60-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296862;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"57-web-or-mls-2105-Windward-Way-60-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258379;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(761,263,'_cs_attachment_import','b8241db34c1be0e89dbdbd61cf588dc8'),
(762,264,'_wp_attached_file','2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg'),
(763,264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\";s:8:\"filesize\";i:572681;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"66-web-or-mls-2105-Windward-Way-62-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15902;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"66-web-or-mls-2105-Windward-Way-62-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"66-web-or-mls-2105-Windward-Way-62-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6538;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"66-web-or-mls-2105-Windward-Way-62-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93781;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"66-web-or-mls-2105-Windward-Way-62-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348432;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"66-web-or-mls-2105-Windward-Way-62-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2577;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"66-web-or-mls-2105-Windward-Way-62-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219735;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"66-web-or-mls-2105-Windward-Way-62-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198282;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"66-web-or-mls-2105-Windward-Way-62-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219735;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"66-web-or-mls-2105-Windward-Way-62-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198282;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(764,264,'_cs_attachment_import','8ba1a74bd7a24fecd768193609980169'),
(765,265,'_wp_attached_file','2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg'),
(766,265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\";s:8:\"filesize\";i:916635;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"69-web-or-mls-2105-Windward-Way-65-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25600;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"69-web-or-mls-2105-Windward-Way-65-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"69-web-or-mls-2105-Windward-Way-65-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10235;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"69-web-or-mls-2105-Windward-Way-65-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158022;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"69-web-or-mls-2105-Windward-Way-65-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:575761;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"69-web-or-mls-2105-Windward-Way-65-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3602;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"69-web-or-mls-2105-Windward-Way-65-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368143;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"69-web-or-mls-2105-Windward-Way-65-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313768;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"69-web-or-mls-2105-Windward-Way-65-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368143;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"69-web-or-mls-2105-Windward-Way-65-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(767,265,'_cs_attachment_import','28c7207136e4e5ca2d07d43eef32a85c'),
(768,266,'_wp_attached_file','2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg'),
(769,266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\";s:8:\"filesize\";i:778105;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"68-web-or-mls-2105-Windward-Way-64-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25868;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"68-web-or-mls-2105-Windward-Way-64-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"68-web-or-mls-2105-Windward-Way-64-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"68-web-or-mls-2105-Windward-Way-64-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152157;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"68-web-or-mls-2105-Windward-Way-64-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:525607;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"68-web-or-mls-2105-Windward-Way-64-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3664;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"68-web-or-mls-2105-Windward-Way-64-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341691;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"68-web-or-mls-2105-Windward-Way-64-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282970;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"68-web-or-mls-2105-Windward-Way-64-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341691;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"68-web-or-mls-2105-Windward-Way-64-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282970;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(770,266,'_cs_attachment_import','911c271fff4e5c836da7e88da22909e1'),
(771,267,'_wp_attached_file','2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg'),
(772,267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\";s:8:\"filesize\";i:755277;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"70-web-or-mls-2105-Windward-Way-66-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19615;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"70-web-or-mls-2105-Windward-Way-66-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"70-web-or-mls-2105-Windward-Way-66-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"70-web-or-mls-2105-Windward-Way-66-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121660;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"70-web-or-mls-2105-Windward-Way-66-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:465969;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"70-web-or-mls-2105-Windward-Way-66-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2908;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"70-web-or-mls-2105-Windward-Way-66-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291639;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"70-web-or-mls-2105-Windward-Way-66-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254696;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"70-web-or-mls-2105-Windward-Way-66-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291639;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"70-web-or-mls-2105-Windward-Way-66-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(773,267,'_cs_attachment_import','8448011ce0c6c8dfa3ddf392306e78d9'),
(774,268,'_wp_attached_file','2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg'),
(775,268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\";s:8:\"filesize\";i:461488;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"55-web-or-mls-2105-Windward-Way-56-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16154;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"55-web-or-mls-2105-Windward-Way-56-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"55-web-or-mls-2105-Windward-Way-56-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"55-web-or-mls-2105-Windward-Way-56-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"55-web-or-mls-2105-Windward-Way-56-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286240;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"55-web-or-mls-2105-Windward-Way-56-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2756;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"55-web-or-mls-2105-Windward-Way-56-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184453;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"55-web-or-mls-2105-Windward-Way-56-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158814;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"55-web-or-mls-2105-Windward-Way-56-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184453;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"55-web-or-mls-2105-Windward-Way-56-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158814;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(776,268,'_cs_attachment_import','d3f08bb93682c26fb15f9b2dd951ca5f'),
(777,269,'_wp_attached_file','2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg'),
(778,269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\";s:8:\"filesize\";i:665135;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"4-web-or-mls-2105-Windward-Way-4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19263;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"4-web-or-mls-2105-Windward-Way-4-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194657;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"4-web-or-mls-2105-Windward-Way-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"4-web-or-mls-2105-Windward-Way-4-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112809;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"4-web-or-mls-2105-Windward-Way-4-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:418222;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"4-web-or-mls-2105-Windward-Way-4-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3142;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"4-web-or-mls-2105-Windward-Way-4-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264040;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"4-web-or-mls-2105-Windward-Way-4-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229510;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"4-web-or-mls-2105-Windward-Way-4-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264040;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"4-web-or-mls-2105-Windward-Way-4-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(779,269,'_cs_attachment_import','b3f3ce35af5ce8ec873a5be1b90e55dc'),
(780,270,'_wp_attached_file','2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg'),
(781,270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\";s:8:\"filesize\";i:871688;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"3-web-or-mls-2105-Windward-Way-3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21836;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"3-web-or-mls-2105-Windward-Way-3-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"3-web-or-mls-2105-Windward-Way-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8543;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"3-web-or-mls-2105-Windward-Way-3-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134791;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"3-web-or-mls-2105-Windward-Way-3-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:526312;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"3-web-or-mls-2105-Windward-Way-3-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3272;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"3-web-or-mls-2105-Windward-Way-3-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326743;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"3-web-or-mls-2105-Windward-Way-3-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280726;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"3-web-or-mls-2105-Windward-Way-3-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326743;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"3-web-or-mls-2105-Windward-Way-3-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(782,270,'_cs_attachment_import','13a20e2e9c6fe86831aaddb406f222cd'),
(783,271,'_wp_attached_file','2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg'),
(784,271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\";s:8:\"filesize\";i:299149;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"5-web-or-mls-2105-Windward-Way-5-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12080;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"5-web-or-mls-2105-Windward-Way-5-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"5-web-or-mls-2105-Windward-Way-5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"5-web-or-mls-2105-Windward-Way-5-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57428;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"5-web-or-mls-2105-Windward-Way-5-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198833;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"5-web-or-mls-2105-Windward-Way-5-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2451;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"5-web-or-mls-2105-Windward-Way-5-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126574;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"5-web-or-mls-2105-Windward-Way-5-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101101;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"5-web-or-mls-2105-Windward-Way-5-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126574;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"5-web-or-mls-2105-Windward-Way-5-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(785,271,'_cs_attachment_import','71b695419265e397c59bdd18a6a675ee'),
(786,272,'_wp_attached_file','2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg'),
(787,272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\";s:8:\"filesize\";i:671187;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"1-web-or-mls-2105-Windward-Way-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19209;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"1-web-or-mls-2105-Windward-Way-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"1-web-or-mls-2105-Windward-Way-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"1-web-or-mls-2105-Windward-Way-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110998;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"1-web-or-mls-2105-Windward-Way-1-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:413459;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"1-web-or-mls-2105-Windward-Way-1-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2971;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"1-web-or-mls-2105-Windward-Way-1-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260147;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"1-web-or-mls-2105-Windward-Way-1-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228324;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"1-web-or-mls-2105-Windward-Way-1-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260147;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"1-web-or-mls-2105-Windward-Way-1-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(788,272,'_cs_attachment_import','3cc2cd1275d421bcefe5d3078166e3a0'),
(789,273,'_wp_attached_file','2024/11/63-web-or-mls-2105-Windward-Way-59-2-1.jpg'),
(790,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:50:\"2024/11/63-web-or-mls-2105-Windward-Way-59-2-1.jpg\";s:8:\"filesize\";i:728251;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"63-web-or-mls-2105-Windward-Way-59-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25173;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"63-web-or-mls-2105-Windward-Way-59-2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233503;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"63-web-or-mls-2105-Windward-Way-59-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"63-web-or-mls-2105-Windward-Way-59-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139663;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"63-web-or-mls-2105-Windward-Way-59-2-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:475709;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:49:\"63-web-or-mls-2105-Windward-Way-59-2-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3642;}s:5:\"entry\";a:5:{s:4:\"file\";s:51:\"63-web-or-mls-2105-Windward-Way-59-2-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310240;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:51:\"63-web-or-mls-2105-Windward-Way-59-2-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262256;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:51:\"63-web-or-mls-2105-Windward-Way-59-2-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310240;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:51:\"63-web-or-mls-2105-Windward-Way-59-2-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262256;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(791,273,'_cs_attachment_import','b9a050da940ae6245f249d47ae75a2e8'),
(792,274,'_wp_attached_file','2024/11/62-web-or-mls-2105-Windward-Way-58-2.jpg'),
(793,274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/62-web-or-mls-2105-Windward-Way-58-2.jpg\";s:8:\"filesize\";i:599610;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"62-web-or-mls-2105-Windward-Way-58-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18229;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"62-web-or-mls-2105-Windward-Way-58-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"62-web-or-mls-2105-Windward-Way-58-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7354;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"62-web-or-mls-2105-Windward-Way-58-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100258;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"62-web-or-mls-2105-Windward-Way-58-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363188;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"62-web-or-mls-2105-Windward-Way-58-2-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2974;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"62-web-or-mls-2105-Windward-Way-58-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230096;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"62-web-or-mls-2105-Windward-Way-58-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203461;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"62-web-or-mls-2105-Windward-Way-58-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230096;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"62-web-or-mls-2105-Windward-Way-58-2-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(794,274,'_cs_attachment_import','fbefbd9aff9b05ccac2a93ddeb854c33'),
(795,275,'_wp_attached_file','2024/11/56-web-or-mls-2105-Windward-Way-57-1.jpg'),
(796,275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/56-web-or-mls-2105-Windward-Way-57-1.jpg\";s:8:\"filesize\";i:471848;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"56-web-or-mls-2105-Windward-Way-57-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18262;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"56-web-or-mls-2105-Windward-Way-57-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"56-web-or-mls-2105-Windward-Way-57-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7620;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"56-web-or-mls-2105-Windward-Way-57-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93181;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"56-web-or-mls-2105-Windward-Way-57-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:311830;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"56-web-or-mls-2105-Windward-Way-57-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2996;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"56-web-or-mls-2105-Windward-Way-57-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203719;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"56-web-or-mls-2105-Windward-Way-57-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176077;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"56-web-or-mls-2105-Windward-Way-57-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203719;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"56-web-or-mls-2105-Windward-Way-57-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176077;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(797,275,'_cs_attachment_import','aae838eb8ee7838db6aad17092470ca0'),
(798,276,'_wp_attached_file','2024/11/47-web-or-mls-2105-Windward-Way-48-1.jpg'),
(799,276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/47-web-or-mls-2105-Windward-Way-48-1.jpg\";s:8:\"filesize\";i:566566;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"47-web-or-mls-2105-Windward-Way-48-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20420;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"47-web-or-mls-2105-Windward-Way-48-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"47-web-or-mls-2105-Windward-Way-48-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"47-web-or-mls-2105-Windward-Way-48-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"47-web-or-mls-2105-Windward-Way-48-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:371337;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"47-web-or-mls-2105-Windward-Way-48-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3228;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"47-web-or-mls-2105-Windward-Way-48-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240088;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"47-web-or-mls-2105-Windward-Way-48-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210286;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"47-web-or-mls-2105-Windward-Way-48-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240088;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"47-web-or-mls-2105-Windward-Way-48-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(800,276,'_cs_attachment_import','d00768c48b93aeb12d34bd00a09dc85e'),
(801,277,'_wp_attached_file','2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg'),
(802,277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\";s:8:\"filesize\";i:634296;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"52-web-or-mls-2105-Windward-Way-53-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19919;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"52-web-or-mls-2105-Windward-Way-53-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"52-web-or-mls-2105-Windward-Way-53-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"52-web-or-mls-2105-Windward-Way-53-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109504;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"52-web-or-mls-2105-Windward-Way-53-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:389848;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"52-web-or-mls-2105-Windward-Way-53-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3237;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"52-web-or-mls-2105-Windward-Way-53-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249332;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"52-web-or-mls-2105-Windward-Way-53-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220889;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"52-web-or-mls-2105-Windward-Way-53-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249332;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"52-web-or-mls-2105-Windward-Way-53-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(803,277,'_cs_attachment_import','37903b09906ec48cfc63a7dd6f4cdf57'),
(804,278,'_wp_attached_file','2024/11/54-web-or-mls-2105-Windward-Way-55-1.jpg'),
(805,278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/54-web-or-mls-2105-Windward-Way-55-1.jpg\";s:8:\"filesize\";i:548412;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"54-web-or-mls-2105-Windward-Way-55-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18792;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"54-web-or-mls-2105-Windward-Way-55-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170188;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"54-web-or-mls-2105-Windward-Way-55-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"54-web-or-mls-2105-Windward-Way-55-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"54-web-or-mls-2105-Windward-Way-55-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:351290;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"54-web-or-mls-2105-Windward-Way-55-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3178;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"54-web-or-mls-2105-Windward-Way-55-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226517;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"54-web-or-mls-2105-Windward-Way-55-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200115;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"54-web-or-mls-2105-Windward-Way-55-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226517;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"54-web-or-mls-2105-Windward-Way-55-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(806,278,'_cs_attachment_import','583c0238bf3cad3b1e3c3a6a2196b3c5'),
(807,279,'_wp_attached_file','2024/11/67-web-or-mls-2105-Windward-Way-63-1.jpg'),
(808,279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/67-web-or-mls-2105-Windward-Way-63-1.jpg\";s:8:\"filesize\";i:632533;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"67-web-or-mls-2105-Windward-Way-63-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20826;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"67-web-or-mls-2105-Windward-Way-63-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193201;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"67-web-or-mls-2105-Windward-Way-63-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8820;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"67-web-or-mls-2105-Windward-Way-63-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113868;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"67-web-or-mls-2105-Windward-Way-63-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:406543;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"67-web-or-mls-2105-Windward-Way-63-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3436;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"67-web-or-mls-2105-Windward-Way-63-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259855;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"67-web-or-mls-2105-Windward-Way-63-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230502;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"67-web-or-mls-2105-Windward-Way-63-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259855;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"67-web-or-mls-2105-Windward-Way-63-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(809,279,'_cs_attachment_import','d40e07a655a44005f74b761e5784d365'),
(810,280,'_wp_attached_file','2024/11/58-web-or-mls-2105-Windward-Way-47.jpg'),
(811,280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/58-web-or-mls-2105-Windward-Way-47.jpg\";s:8:\"filesize\";i:655453;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"58-web-or-mls-2105-Windward-Way-47-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19045;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"58-web-or-mls-2105-Windward-Way-47-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"58-web-or-mls-2105-Windward-Way-47-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"58-web-or-mls-2105-Windward-Way-47-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109591;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"58-web-or-mls-2105-Windward-Way-47-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:408186;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"58-web-or-mls-2105-Windward-Way-47-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3069;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"58-web-or-mls-2105-Windward-Way-47-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256991;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"58-web-or-mls-2105-Windward-Way-47-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225693;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"58-web-or-mls-2105-Windward-Way-47-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256991;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"58-web-or-mls-2105-Windward-Way-47-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225693;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(812,280,'_cs_attachment_import','1d9b556c513f2114d0ff9f224071b3ba'),
(813,281,'_wp_attached_file','2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg'),
(814,281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\";s:8:\"filesize\";i:323774;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"11-web-or-mls-2105-Windward-Way-11-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14844;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"11-web-or-mls-2105-Windward-Way-11-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"11-web-or-mls-2105-Windward-Way-11-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"11-web-or-mls-2105-Windward-Way-11-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"11-web-or-mls-2105-Windward-Way-11-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209581;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"11-web-or-mls-2105-Windward-Way-11-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2743;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"11-web-or-mls-2105-Windward-Way-11-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139737;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"11-web-or-mls-2105-Windward-Way-11-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119140;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"11-web-or-mls-2105-Windward-Way-11-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139737;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"11-web-or-mls-2105-Windward-Way-11-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119140;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(815,281,'_cs_attachment_import','667f3e641ab18c1030b9d13998aa150a'),
(816,282,'_wp_attached_file','2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg'),
(817,282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\";s:8:\"filesize\";i:272808;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"10-web-or-mls-2105-Windward-Way-10-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12101;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"10-web-or-mls-2105-Windward-Way-10-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"10-web-or-mls-2105-Windward-Way-10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6011;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"10-web-or-mls-2105-Windward-Way-10-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53156;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"10-web-or-mls-2105-Windward-Way-10-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171508;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"10-web-or-mls-2105-Windward-Way-10-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2490;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"10-web-or-mls-2105-Windward-Way-10-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112060;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"10-web-or-mls-2105-Windward-Way-10-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93515;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"10-web-or-mls-2105-Windward-Way-10-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112060;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"10-web-or-mls-2105-Windward-Way-10-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93515;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(818,282,'_cs_attachment_import','1a440e872d66ddafdfdfb0816053c525'),
(819,283,'_wp_attached_file','2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg'),
(820,283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\";s:8:\"filesize\";i:323545;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"9-web-or-mls-2105-Windward-Way-9-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14714;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"9-web-or-mls-2105-Windward-Way-9-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"9-web-or-mls-2105-Windward-Way-9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"9-web-or-mls-2105-Windward-Way-9-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66797;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"9-web-or-mls-2105-Windward-Way-9-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208837;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"9-web-or-mls-2105-Windward-Way-9-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2828;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"9-web-or-mls-2105-Windward-Way-9-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139056;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"9-web-or-mls-2105-Windward-Way-9-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119759;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"9-web-or-mls-2105-Windward-Way-9-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139056;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"9-web-or-mls-2105-Windward-Way-9-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119759;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(821,283,'_cs_attachment_import','bcd725807c8021601fa3120f7c61f61d'),
(822,284,'_wp_attached_file','2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg'),
(823,284,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\";s:8:\"filesize\";i:253260;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"6-web-or-mls-2105-Windward-Way-6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12583;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"6-web-or-mls-2105-Windward-Way-6-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86060;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"6-web-or-mls-2105-Windward-Way-6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5873;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"6-web-or-mls-2105-Windward-Way-6-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54106;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"6-web-or-mls-2105-Windward-Way-6-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166498;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"6-web-or-mls-2105-Windward-Way-6-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2577;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"6-web-or-mls-2105-Windward-Way-6-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110893;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"6-web-or-mls-2105-Windward-Way-6-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95576;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"6-web-or-mls-2105-Windward-Way-6-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110893;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"6-web-or-mls-2105-Windward-Way-6-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95576;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(824,284,'_cs_attachment_import','cb34082f0a4dd89c406f93b71698b9b0'),
(825,285,'_wp_attached_file','2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg'),
(826,285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:46:\"2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\";s:8:\"filesize\";i:334620;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"7-web-or-mls-2105-Windward-Way-7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15456;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"7-web-or-mls-2105-Windward-Way-7-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109941;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"7-web-or-mls-2105-Windward-Way-7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6852;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"7-web-or-mls-2105-Windward-Way-7-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68864;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"7-web-or-mls-2105-Windward-Way-7-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214192;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:45:\"7-web-or-mls-2105-Windward-Way-7-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2850;}s:5:\"entry\";a:5:{s:4:\"file\";s:47:\"7-web-or-mls-2105-Windward-Way-7-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142213;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:47:\"7-web-or-mls-2105-Windward-Way-7-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121521;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:47:\"7-web-or-mls-2105-Windward-Way-7-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142213;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:47:\"7-web-or-mls-2105-Windward-Way-7-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(827,285,'_cs_attachment_import','b4fcf156dfef252d52e8bf0d0596e5bc'),
(828,286,'_wp_attached_file','2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg'),
(829,286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\";s:8:\"filesize\";i:274261;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"22-web-or-mls-2105-Windward-Way-22-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11993;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"22-web-or-mls-2105-Windward-Way-22-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"22-web-or-mls-2105-Windward-Way-22-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"22-web-or-mls-2105-Windward-Way-22-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54311;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"22-web-or-mls-2105-Windward-Way-22-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175585;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"22-web-or-mls-2105-Windward-Way-22-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2561;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"22-web-or-mls-2105-Windward-Way-22-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115608;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"22-web-or-mls-2105-Windward-Way-22-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98910;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"22-web-or-mls-2105-Windward-Way-22-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115608;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"22-web-or-mls-2105-Windward-Way-22-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(830,286,'_cs_attachment_import','86bee6e0751971ed7b71976df743ad06'),
(831,287,'_wp_attached_file','2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg'),
(832,287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\";s:8:\"filesize\";i:258324;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"16-web-or-mls-2105-Windward-Way-16-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13290;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"16-web-or-mls-2105-Windward-Way-16-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"16-web-or-mls-2105-Windward-Way-16-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6307;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"16-web-or-mls-2105-Windward-Way-16-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57784;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"16-web-or-mls-2105-Windward-Way-16-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171366;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"16-web-or-mls-2105-Windward-Way-16-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2644;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"16-web-or-mls-2105-Windward-Way-16-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116474;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"16-web-or-mls-2105-Windward-Way-16-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102941;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"16-web-or-mls-2105-Windward-Way-16-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116474;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"16-web-or-mls-2105-Windward-Way-16-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102941;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(833,287,'_cs_attachment_import','26df37b67aa1784f7067100f59b96aa7'),
(834,288,'_wp_attached_file','2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg'),
(835,288,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\";s:8:\"filesize\";i:269888;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"14-web-or-mls-2105-Windward-Way-14-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13435;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"14-web-or-mls-2105-Windward-Way-14-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95497;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"14-web-or-mls-2105-Windward-Way-14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5453;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"14-web-or-mls-2105-Windward-Way-14-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"14-web-or-mls-2105-Windward-Way-14-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180366;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"14-web-or-mls-2105-Windward-Way-14-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2624;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"14-web-or-mls-2105-Windward-Way-14-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122399;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"14-web-or-mls-2105-Windward-Way-14-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103824;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"14-web-or-mls-2105-Windward-Way-14-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122399;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"14-web-or-mls-2105-Windward-Way-14-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(836,288,'_cs_attachment_import','00f2b125685da052d7bf3562f9ef2a05'),
(837,289,'_cs_template_identifier','element|__multi__'),
(838,289,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Welcome</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"245:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"246:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"247:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"248:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/63-web-or-mls-2105-Windward-Way-59-2-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"209:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/62-web-or-mls-2105-Windward-Way-58-2.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"210:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/56-web-or-mls-2105-Windward-Way-57-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"211:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/47-web-or-mls-2105-Windward-Way-48-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"212:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/54-web-or-mls-2105-Windward-Way-55-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"214:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/67-web-or-mls-2105-Windward-Way-63-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"215:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/58-web-or-mls-2105-Windward-Way-47.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"216:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Inside Living</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"217:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"218:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"219:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"220:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"221:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"223:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"224:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"225:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"226:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"227:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"228:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (2)\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Paradise</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"194:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"195:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"196:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"197:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"198:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"199:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]}'),
(839,290,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Five Guys &amp; Chipotle</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"246:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"247:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"248:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/63-web-or-mls-2105-Windward-Way-59-2-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"209:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/62-web-or-mls-2105-Windward-Way-58-2.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"210:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/56-web-or-mls-2105-Windward-Way-57-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"211:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/47-web-or-mls-2105-Windward-Way-48-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"212:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/54-web-or-mls-2105-Windward-Way-55-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"214:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/67-web-or-mls-2105-Windward-Way-63-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"215:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/58-web-or-mls-2105-Windward-Way-47.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"216:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Inside Living</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"217:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"218:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"219:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"220:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"221:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"223:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"224:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"225:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"226:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"227:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"228:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (2)\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Paradise</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"194:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"195:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"196:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"197:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"198:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"199:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(840,290,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(841,291,'_wp_attached_file','2024/11/4L9A4614-scaled.jpg'),
(842,291,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4614-scaled.jpg\";s:8:\"filesize\";i:756406;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4614-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46628;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4614-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4614-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37095;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4614-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110646;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4614-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303855;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4614-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:500063;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4614-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32776;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4614-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204443;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4614-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187378;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4614-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204443;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4614-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703055469\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4614.jpg\";}'),
(843,292,'_wp_attached_file','2024/11/4L9A4617-1-scaled.jpg'),
(844,292,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4617-1-scaled.jpg\";s:8:\"filesize\";i:975517;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4617-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43405;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4617-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4617-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35302;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4617-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111348;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4617-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:352876;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4617-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:620072;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4617-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30983;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4617-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223392;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4617-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195730;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4617-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223392;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4617-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703055564\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4617-1.jpg\";}'),
(845,293,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em 0em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7:0\",\"text_content\":\"<p>Inside Living</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"217:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"218:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"219:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"220:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"221:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"223:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"224:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"225:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"226:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"227:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"228:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (2)\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Paradise</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"194:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"195:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"196:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"197:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"198:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"199:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(846,293,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(847,294,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"221:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"223:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"224:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"225:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"226:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"227:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"228:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (2)\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Paradise</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"194:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"195:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"196:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"197:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"198:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"199:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(848,294,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(849,295,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1) (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"194:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"195:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"196:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"197:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"198:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"199:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(850,295,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(851,296,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1) (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(852,296,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(853,297,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1) (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"200:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"201:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"213:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"203:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"204:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(854,297,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(855,298,'_wp_attached_file','2024/11/4L9A7825-scaled.jpg'),
(856,298,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A7825-scaled.jpg\";s:8:\"filesize\";i:850009;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A7825-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41769;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A7825-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A7825-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33367;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A7825-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102422;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A7825-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315556;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A7825-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:545793;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A7825-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30216;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A7825-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204055;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A7825-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178580;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7825-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204055;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7825-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178580;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1694500150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A7825.jpg\";}'),
(857,299,'_wp_attached_file','2024/11/4L9A7868-scaled.jpg'),
(858,299,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A7868-scaled.jpg\";s:8:\"filesize\";i:862161;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A7868-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44383;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A7868-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A7868-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35607;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A7868-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107180;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A7868-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323107;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A7868-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:557929;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A7868-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31905;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A7868-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208539;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A7868-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176659;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7868-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208539;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A7868-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176659;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1694501022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A7868.jpg\";}'),
(859,300,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1) (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Resort Lifestyle - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Owner&rsquo;s Suite</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"text_text_align\":\"right\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"205:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(860,300,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(861,301,'_wp_attached_file','2024/11/4L9A4629-1-scaled.jpg'),
(862,301,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4629-1-scaled.jpg\";s:8:\"filesize\";i:999052;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4629-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42636;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4629-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4629-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34042;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4629-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113345;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4629-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363694;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4629-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:638151;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4629-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30449;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4629-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230542;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4629-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193005;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4629-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230542;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4629-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057824\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4629-1.jpg\";}'),
(863,302,'_wp_attached_file','2024/11/4L9A4630-1-scaled.jpg'),
(864,302,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4630-1-scaled.jpg\";s:8:\"filesize\";i:887159;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4630-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39527;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4630-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150943;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4630-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4630-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97664;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4630-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309282;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4630-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:553882;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4630-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4630-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195664;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4630-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158262;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4630-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195664;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4630-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158262;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057850\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4630-1.jpg\";}'),
(865,303,'_wp_attached_file','2024/11/4L9A4632-1-scaled.jpg'),
(866,303,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4632-1-scaled.jpg\";s:8:\"filesize\";i:809348;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4632-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37069;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4632-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145260;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4632-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4632-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92787;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4632-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293877;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4632-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:517222;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4632-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27464;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4632-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187240;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4632-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160069;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4632-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187240;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4632-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4632-1.jpg\";}'),
(867,304,'_wp_attached_file','2024/11/4L9A4633-1-scaled.jpg'),
(868,304,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4633-1-scaled.jpg\";s:8:\"filesize\";i:754208;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4633-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37971;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4633-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4633-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4633-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91212;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4633-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274690;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4633-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:479289;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4633-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28060;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4633-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177021;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4633-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146751;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4633-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177021;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4633-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703057893\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4633-1.jpg\";}'),
(869,305,'_wp_attached_file','2024/11/4L9A4634-Edit-1-scaled.jpg'),
(870,305,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:34:\"2024/11/4L9A4634-Edit-1-scaled.jpg\";s:8:\"filesize\";i:595871;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"4L9A4634-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36539;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"4L9A4634-Edit-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"4L9A4634-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30333;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"4L9A4634-Edit-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80361;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"4L9A4634-Edit-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224297;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"4L9A4634-Edit-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:382536;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:26:\"4L9A4634-Edit-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27801;}s:5:\"entry\";a:5:{s:4:\"file\";s:28:\"4L9A4634-Edit-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147765;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:28:\"4L9A4634-Edit-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126295;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:28:\"4L9A4634-Edit-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147765;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:28:\"4L9A4634-Edit-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126295;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703058031\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"4L9A4634-Edit-1.jpg\";}');
INSERT INTO `wp_postmeta` VALUES
(871,306,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 100px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"207:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"208:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"177:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"178:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"179:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"206:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(872,306,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(873,307,'_wp_attached_file','2024/11/4L9A4618-1-scaled.jpg'),
(874,307,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2024/11/4L9A4618-1-scaled.jpg\";s:8:\"filesize\";i:872034;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"4L9A4618-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46667;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"4L9A4618-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177619;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"4L9A4618-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37040;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"4L9A4618-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117664;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"4L9A4618-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:344692;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"4L9A4618-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:575578;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"4L9A4618-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32705;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"4L9A4618-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227512;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"4L9A4618-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208178;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4618-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227512;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"4L9A4618-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208178;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056607\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"4L9A4618-1.jpg\";}'),
(875,308,'_wp_attached_file','2024/11/4L9A4626-scaled.jpg'),
(876,308,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4626-scaled.jpg\";s:8:\"filesize\";i:895991;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4626-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46023;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4626-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4626-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4626-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116116;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4626-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:344866;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4626-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:586014;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4626-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32373;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4626-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226108;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4626-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202554;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4626-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226108;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4626-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056775\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4626.jpg\";}'),
(877,309,'_wp_attached_file','2024/11/4L9A4623-scaled.jpg'),
(878,309,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4623-scaled.jpg\";s:8:\"filesize\";i:886698;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4623-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40107;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4623-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4623-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32228;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4623-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99308;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4623-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:312504;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4623-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:556543;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4623-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29046;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4623-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197558;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4623-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172536;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4623-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197558;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4623-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172536;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056704\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4623.jpg\";}'),
(879,310,'_wp_attached_file','2024/11/4L9A4622-scaled.jpg'),
(880,310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4622-scaled.jpg\";s:8:\"filesize\";i:844133;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4622-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40029;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4622-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4622-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32225;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4622-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97768;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4622-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303660;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4622-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:535267;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4622-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29103;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4622-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193201;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4622-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168435;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4622-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193201;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4622-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056704\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4622.jpg\";}'),
(881,311,'_wp_attached_file','2024/11/4L9A4619-scaled.jpg'),
(882,311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4619-scaled.jpg\";s:8:\"filesize\";i:771724;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4619-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44880;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4619-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4619-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35809;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4619-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105091;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4619-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:299433;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4619-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:503968;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4619-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31792;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4619-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198047;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4619-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176175;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4619-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198047;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4619-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176175;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1703056650\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4619.jpg\";}'),
(883,312,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Hyundai</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Master - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0em\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Be Our Guest</p>\",\"text_font_family\":\"Wt19dMF05FiwZGI3BF\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(2rem + 3.5vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(2, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"186:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"187:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"188:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"202:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(884,312,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(885,313,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(886,313,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(887,314,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Commerical Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(888,314,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(889,315,'_cs_template_identifier','element|__multi__'),
(890,315,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]}'),
(891,153,'_cs_states_cache',''),
(892,316,'_wp_page_template','template-blank-4.php'),
(893,316,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(894,316,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"!0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0em 0em 1em 0em\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0em 0em 4em 0em\",\"text_text_align\":\"left\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Commercial Stucco Services Include:</strong></h3>\\n<ul>\\n<li>Stucco application for new commercial construction projects.</li>\\n<li>Renovations and updates to existing stucco exteriors.</li>\\n<li>EIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.</li>\\n<li>Crack repair and restoration to maintain a professional appearance.</li>\\n<li>Custom texturing and design to align with your company&rsquo;s branding.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"2em 0em 2em 0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq/Ft Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(895,317,'_cornerstone_data','[]'),
(896,317,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(897,316,'_cs_last_save','2024-11-26 20:38:48'),
(898,316,'_cs_states_cache',''),
(899,318,'_cornerstone_data','[]'),
(900,318,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(901,319,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Commerical Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(902,319,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(903,320,'_wp_page_template','template-blank-4.php'),
(904,320,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(905,320,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Wappingers Falls, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Pleasantville, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>hillsdale, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"445:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"443:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Fishkill, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"439:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"440:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(906,321,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Commerical Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(907,321,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(908,320,'_cs_last_save','2024-11-27 14:28:35'),
(909,320,'_cs_states_cache',''),
(910,322,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Comprehensive Commerical Stucco Solutions Tailored to Your Needs\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(911,322,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(914,316,'_edit_last','1'),
(923,316,'_edit_lock','1732570746:1'),
(924,320,'_edit_last','1'),
(925,324,'_menu_item_type','post_type'),
(926,324,'_menu_item_menu_item_parent','0'),
(927,324,'_menu_item_object_id','320'),
(928,324,'_menu_item_object','page'),
(929,324,'_menu_item_target',''),
(930,324,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(931,324,'_menu_item_xfn',''),
(932,324,'_menu_item_url',''),
(933,320,'_edit_lock','1732570761:1'),
(943,326,'_menu_item_type','post_type'),
(944,326,'_menu_item_menu_item_parent','0'),
(945,326,'_menu_item_object_id','316'),
(946,326,'_menu_item_object','page'),
(947,326,'_menu_item_target',''),
(948,326,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(949,326,'_menu_item_xfn',''),
(950,326,'_menu_item_url',''),
(955,326,'menu-item-anchor_graphic_menu_item_display','on'),
(956,326,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(957,326,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(970,328,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential Stucco: Transform Your Home with Timeless Beauty and Durability\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(971,328,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(972,329,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"171:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(973,329,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(974,330,'_wp_attached_file','2024/11/4L9A4605-2-1-scaled.jpg'),
(975,330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:31:\"2024/11/4L9A4605-2-1-scaled.jpg\";s:8:\"filesize\";i:1127075;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"4L9A4605-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44616;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"4L9A4605-2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195884;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"4L9A4605-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"4L9A4605-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121996;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"4L9A4605-2-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:411489;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:26:\"4L9A4605-2-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:723923;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"4L9A4605-2-1-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31637;}s:5:\"entry\";a:5:{s:4:\"file\";s:25:\"4L9A4605-2-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258405;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:25:\"4L9A4605-2-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222959;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:25:\"4L9A4605-2-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258405;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:25:\"4L9A4605-2-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972930\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"4L9A4605-2-1.jpg\";}'),
(976,331,'_wp_attached_file','2024/11/4L9A4612-scaled.jpg'),
(977,331,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/11/4L9A4612-scaled.jpg\";s:8:\"filesize\";i:1102675;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4612-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58027;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4612-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240958;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4612-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44202;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A4612-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288671;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4612-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:459977;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4612-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:749082;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4612-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42169;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A4612-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:603035;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4612-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240018;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A4612-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:603035;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4612-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702973060\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4612.jpg\";}'),
(979,332,'_wp_attached_file','2024/11/4L9A4609-scaled.jpg'),
(980,332,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4609-scaled.jpg\";s:8:\"filesize\";i:1316653;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4609-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58152;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4609-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4609-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44713;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4609-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165638;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4609-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:515110;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4609-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:871169;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4609-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38826;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4609-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:333612;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4609-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287653;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4609-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:333612;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4609-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287653;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972992\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4609.jpg\";}'),
(981,333,'_wp_attached_file','2024/11/4L9A4610-scaled.jpg'),
(982,333,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4610-scaled.jpg\";s:8:\"filesize\";i:602209;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4610-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40671;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4610-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127614;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4610-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33949;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4610-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4610-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237454;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4610-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:394162;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4610-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30673;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4610-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160631;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4610-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145881;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4610-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160631;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4610-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145881;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702973005\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4610.jpg\";}'),
(983,334,'_wp_attached_file','2024/11/4L9A4607-scaled.jpg'),
(984,334,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/11/4L9A4607-scaled.jpg\";s:8:\"filesize\";i:1175647;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4607-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51637;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4607-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4607-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A4607-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281850;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4607-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:465114;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4607-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:780479;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4607-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38283;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A4607-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:620509;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4607-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231972;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A4607-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:620509;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4607-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231972;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972979\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4607.jpg\";}'),
(985,335,'_wp_attached_file','2024/11/4L9A4606-scaled.jpg'),
(986,335,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/11/4L9A4606-scaled.jpg\";s:8:\"filesize\";i:965906;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4606-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43057;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4606-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4606-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34994;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"4L9A4606-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110026;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4606-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:352376;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4606-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:619660;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"4L9A4606-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31780;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"4L9A4606-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223239;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4606-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189714;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4606-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223239;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4606-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189714;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972954\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4606.jpg\";}'),
(987,336,'_wp_attached_file','2024/11/4L9A4604-scaled.jpg'),
(988,336,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/11/4L9A4604-scaled.jpg\";s:8:\"filesize\";i:1258063;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"4L9A4604-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47073;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"4L9A4604-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4604-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"4L9A4604-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267437;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"4L9A4604-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:462782;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"4L9A4604-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:815731;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"4L9A4604-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35929;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"4L9A4604-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:636337;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"4L9A4604-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249299;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"4L9A4604-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:636337;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"4L9A4604-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249299;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1702972926\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"4L9A4604.jpg\";}'),
(989,337,'_wp_attached_file','2024/11/lawn.jpg'),
(990,337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2024/11/lawn.jpg\";s:8:\"filesize\";i:229357;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"lawn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18163;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"lawn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"lawn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"lawn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84812;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"lawn-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6203;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:17:\"lawn-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190811;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:17:\"lawn-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(991,338,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(992,338,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(993,339,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]}]'),
(994,339,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}');
INSERT INTO `wp_postmeta` VALUES
(995,340,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]}]'),
(996,340,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(997,341,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n \\t<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n \\t<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n \\t<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n \\t<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\\n<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]}]'),
(998,341,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(999,342,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\\n<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n<li>New construction stucco applications.</li>\\n<li>Renovations and upgrades to existing stucco finishes.</li>\\n<li>Crack repair and seamless patchwork for a flawless look.</li>\\n<li>Custom texturing and color matching to fit your home&rsquo;s design.</li>\\n</ul>\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]}]'),
(1000,342,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1001,343,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]}]'),
(1002,343,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1003,344,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1004,344,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1005,345,'_cs_template_identifier','element|__multi__'),
(1006,345,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0.5em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]}'),
(1007,346,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1008,346,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1009,347,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1010,347,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1011,348,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish\\u2014it\'s a lasting investment in your home\\u2019s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1012,348,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1013,349,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"<p>At Baseline Stucco, we understand that first impressions matter\\u2014especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you\\u2019re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.</p>\\n<p>Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida\\u2019s weather while maintaining its professional appeal for years to come.</p>\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1014,349,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1015,350,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"<p>At Baseline Stucco, we understand that first impressions matter\\u2014especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you\\u2019re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.</p>\\n<p>Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida\\u2019s weather while maintaining its professional appeal for years to come.</p>\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1016,350,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1017,351,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1018,351,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1019,352,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Commercial Stucco Services Include:</strong></h3>\\n<ul>\\n<li>Stucco application for new commercial construction projects.</li>\\n<li>Renovations and updates to existing stucco exteriors.</li>\\n<li>EIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.</li>\\n<li>Crack repair and restoration to maintain a professional appearance.</li>\\n<li>Custom texturing and design to align with your company&rsquo;s branding.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\".5em 0em 0.5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 0px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"0em 0em .5em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1020,352,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1024,353,'_edit_lock','1732717845:1'),
(1025,354,'_wp_attached_file','2024/11/verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80.webp'),
(1026,354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80.webp\";s:8:\"filesize\";i:998000;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:85376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22958;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:517158;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10932;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:723876;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:723876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1029,355,'_cornerstone_data',NULL),
(1030,355,'_cornerstone_settings',NULL),
(1031,353,'_edit_last','1'),
(1032,353,'_x_entry_body_css_class',''),
(1033,353,'_x_post_layout','off'),
(1034,353,'_x_entry_alternate_index_title',''),
(1035,353,'_x_entry_bg_image_full',''),
(1036,353,'_x_entry_bg_image_full_fade','750'),
(1037,353,'_x_entry_bg_image_full_duration','7500'),
(1038,353,'_x_quote_quote',''),
(1039,353,'_x_quote_cite',''),
(1040,353,'_x_link_url',''),
(1041,353,'_x_video_aspect_ratio','16:9'),
(1042,353,'_x_video_m4v',''),
(1043,353,'_x_video_ogv',''),
(1044,353,'_x_video_embed',''),
(1045,353,'_x_audio_mp3',''),
(1046,353,'_x_audio_ogg',''),
(1047,353,'_x_audio_embed',''),
(1050,353,'_thumbnail_id','354'),
(1053,356,'_edit_lock','1732573463:1'),
(1054,357,'_wp_attached_file','2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1.webp'),
(1055,357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:115:\"2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1.webp\";s:8:\"filesize\";i:1083210;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:115:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:94070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:115:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:115:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:550774;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:115:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13282;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:116:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:724268;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:116:\"verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:724268;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1058,356,'_thumbnail_id','357'),
(1059,358,'_cornerstone_data',NULL),
(1060,358,'_cornerstone_settings',NULL),
(1061,356,'_edit_last','1'),
(1062,356,'_x_entry_body_css_class',''),
(1063,356,'_x_post_layout','off'),
(1064,356,'_x_entry_alternate_index_title',''),
(1065,356,'_x_entry_bg_image_full',''),
(1066,356,'_x_entry_bg_image_full_fade','750'),
(1067,356,'_x_entry_bg_image_full_duration','7500'),
(1068,356,'_x_quote_quote',''),
(1069,356,'_x_quote_cite',''),
(1070,356,'_x_link_url',''),
(1071,356,'_x_video_aspect_ratio','16:9'),
(1072,356,'_x_video_m4v',''),
(1073,356,'_x_video_ogv',''),
(1074,356,'_x_video_embed',''),
(1075,356,'_x_audio_mp3',''),
(1076,356,'_x_audio_ogg',''),
(1077,356,'_x_audio_embed',''),
(1078,359,'_edit_lock','1732717837:1'),
(1079,360,'_wp_attached_file','2024/11/verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5.webp'),
(1080,360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:770;s:4:\"file\";s:109:\"2024/11/verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5.webp\";s:8:\"filesize\";i:628040;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:89768;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24110;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:551362;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11892;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:563606;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:109:\"verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:563606;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1083,359,'_thumbnail_id','360'),
(1084,361,'_cornerstone_data',NULL),
(1085,361,'_cornerstone_settings',NULL),
(1086,359,'_edit_last','1'),
(1087,359,'_x_entry_body_css_class',''),
(1088,359,'_x_post_layout','off'),
(1089,359,'_x_entry_alternate_index_title',''),
(1090,359,'_x_entry_bg_image_full',''),
(1091,359,'_x_entry_bg_image_full_fade','750'),
(1092,359,'_x_entry_bg_image_full_duration','7500'),
(1093,359,'_x_quote_quote',''),
(1094,359,'_x_quote_cite',''),
(1095,359,'_x_link_url',''),
(1096,359,'_x_video_aspect_ratio','16:9'),
(1097,359,'_x_video_m4v',''),
(1098,359,'_x_video_ogv',''),
(1099,359,'_x_video_embed',''),
(1100,359,'_x_audio_mp3',''),
(1101,359,'_x_audio_ogg',''),
(1102,359,'_x_audio_embed',''),
(1103,362,'_edit_lock','1732573792:1'),
(1106,353,'_cs_states_cache','Draft'),
(1107,356,'_cs_states_cache',''),
(1108,359,'_cs_states_cache','Draft'),
(1123,363,'_cs_template_identifier','element|__multi__'),
(1124,363,'_cs_template_data','{\"elements\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]}]}'),
(1125,364,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]}]'),
(1126,364,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1141,365,'_menu_item_type','post_type'),
(1142,365,'_menu_item_menu_item_parent','0'),
(1143,365,'_menu_item_object_id','320'),
(1144,365,'_menu_item_object','page'),
(1145,365,'_menu_item_target',''),
(1146,365,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1147,365,'_menu_item_xfn',''),
(1148,365,'_menu_item_url',''),
(1150,365,'menu-item-anchor_graphic_menu_item_display','on'),
(1151,365,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1152,365,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1156,366,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services Graphics\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"50% 50%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"13:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14:0.37\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"warehouse-full\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"LTL services\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-heart\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_family\":\"google:montserrat\",\"anchor_primary_font_weight\":\"600\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Residential\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Breaking<br />Barriers in Shipping\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Let\'s talk Logistics\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"For fast, reliable delivery to your home or business, choose McLeod Expedite. We understand the critical importance of timely deliveries and are committed to ensuring your shipments arrive on schedule. As a trusted Omaha, NE delivery service, we offer a range of services, including on-demand, scheduled, air freight, and truckload options. Contact us today to learn how we can support your shipping needs.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_layout\":\"410px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"31:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>Local Courier Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>On-Demand Deliveries:</strong> Fast, same-day delivery whenever you need it.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Scheduled Services:</strong> Regularly scheduled pickups and deliveries to fit your timetable.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Medical Samples: </strong>Secure, fast delivery of medical specimens and lab samples.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Organ Delivery: </strong>Safe and rapid transport of organs for transplants.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Hospitals, Labs, Doctor Offices: </strong>Reliable courier services tailored to the medical field, ensuring timely deliveries to healthcare facilities.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>STAT Deliveries: </strong>Immediate, priority deliveries for time-sensitive needs.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/on-demand-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"On Demand Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/medical-and-stat-deliveries/\",\"anchor_margin\":\"auto 0px 18px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.968em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Medical &amp; Stat Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (3)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/scheduled-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Scheduled Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Truckload Delivery\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"32:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<span>Expedited Services</span>\",\"text_font_family\":\"system:helveticaneue\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Expedited LTL Service:</strong> When you needed it yesterday, we have your back! Less-Than-Truckload shipping for smaller shipments. From one letter to a pallet we do it all!\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Critical Medical Delivery Services: </strong>Urgent transport for essential medical items.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Seamless Business-to-Business Deliveries: </strong>Efficient and timely delivery solutions for B2B needs, ensuring smooth operations between businesses.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"0px 0px 14px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Truckload Services:</strong> Full truckload options for larger, bulk deliveries.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<b>Delivery Vehicles Available: Flat Bed Truck, Sprinter Van, Straight Truck &amp; 53\\\" Tractor Trailers&nbsp;</b>\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (2)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"LTL Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/business-to-business-deliveries/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Business to Business\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]'),
(1157,366,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}');
INSERT INTO `wp_postmeta` VALUES
(1158,367,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services Graphics\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"50% 50%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14:0.37\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"warehouse-full\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Commercial\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"333:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-heart\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Residential\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"18px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgb(255, 255, 255)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2rem\",\"bar_padding\":\"!0rem\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"null\",\"bg_lower_parallax\":true,\"bg_lower_parallax_size\":\"125%\",\"bg_lower_type\":\"image\",\"bg_upper_image\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png\",\"bg_upper_type\":\"image\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"6rem 0rem 6rem 0rem\",\"container_row_flex_justify\":\"center\",\"container_z_index\":\"1\",\"hide_bp\":\"none\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(7vw + 2rem)\",\"text_bg_color\":\"global-color:UfLCUXCIRLHd0iULMJ:0.27\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Breaking<br />Barriers in Shipping\",\"text_font_family\":\"google:ptsans\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1\",\"text_margin\":\"7.5vw 0vw 7.5vw 0vw\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Shipping Services\",\"_m\":{\"e\":2},\"bg_lower_image\":\"null\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:tP9HgR7hp1cE6IHVPh:0.59\",\"bg_upper_type\":\"color\",\"section_bg_advanced\":true,\"section_bg_color\":\"#0b68a1\",\"section_padding\":\"100px 0px 100px 0px\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_flexbox\":true,\"layout_div_global_container\":true,\"layout_div_text_align\":\"center\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"Lets Talk Logisitcs\",\"text_base_font_size\":\"54px\",\"text_content\":\"Let\'s talk Logistics\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-bold\",\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"28px\",\"text_graphic_margin\":\"0px 0px 12px 0px\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px 0px 0px 0px\",\"text_max_width\":\"12em\",\"text_subheadline_content\":\"Quick caption here\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_size\":\"28px\",\"text_subheadline_font_weight\":\"fw-bold\",\"text_subheadline_line_height\":\"1.2\",\"text_subheadline_reverse\":true,\"text_subheadline_spacing\":\"9px\",\"text_subheadline_text_color\":\"#0073e6\",\"text_tag\":\"h2\",\"text_text_color\":\"#003f66\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"Text\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"For fast, reliable delivery to your home or business, choose McLeod Expedite. We understand the critical importance of timely deliveries and are committed to ensuring your shipments arrive on schedule. As a trusted Omaha, NE delivery service, we offer a range of services, including on-demand, scheduled, air freight, and truckload options. Contact us today to learn how we can support your shipping needs.\",\"text_font_size\":\"18px\",\"text_font_weight\":\"fw-normal\",\"text_line_height\":\"1.5\",\"text_margin\":\"28px 0px 44px 0px\",\"text_max_width\":\"40em\",\"text_text_color\":\"rgb(255, 255, 255)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"global-color:tP9HgR7hp1cE6IHVPh\",\"anchor_border_color\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_color_alt\":\"global-color:UfLCUXCIRLHd0iULMJ\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"0px 0px 32px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"global-color:5ERbCgugCAgTae5h58\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"ST Cards (Border)\",\"_m\":{\"e\":2},\"layout_row_flex_justify\":\"space-evenly\",\"layout_row_gap_column\":\"34px\",\"layout_row_gap_row\":\"68px\",\"layout_row_layout\":\"410px\",\"layout_row_max_width\":\"100%\",\"layout_row_text_align\":\"left\",\"layout_row_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"31:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<p>Local Courier Services</p>\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>On-Demand Deliveries:</strong> Fast, same-day delivery whenever you need it.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (4)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Scheduled Services:</strong> Regularly scheduled pickups and deliveries to fit your timetable.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Medical Samples: </strong>Secure, fast delivery of medical specimens and lab samples.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Organ Delivery: </strong>Safe and rapid transport of organs for transplants.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Hospitals, Labs, Doctor Offices: </strong>Reliable courier services tailored to the medical field, ensuring timely deliveries to healthcare facilities.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>STAT Deliveries: </strong>Immediate, priority deliveries for time-sensitive needs.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/on-demand-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"On Demand Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/medical-and-stat-deliveries/\",\"anchor_margin\":\"auto 0px 18px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.968em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Medical &amp; Stat Deliveries\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (3)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/scheduled-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Scheduled Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Truckload Delivery\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_label\":\"Card\",\"_m\":{\"e\":2},\"layout_column_bg_color\":\"#ffffff\",\"layout_column_border_color\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_color_alt\":\"rgba(10, 37, 64, 0.11)\",\"layout_column_border_radius\":\"18px\",\"layout_column_border_width\":\"2px\",\"layout_column_box_shadow_color\":\"rgba(0, 18, 36, 0.11)\",\"layout_column_box_shadow_dimensions\":\"!0em 0.65em 3em -1.25em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_wrap\":false,\"layout_column_flexbox\":true,\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Card Figure\",\"_m\":{\"e\":1},\"layout_div_flex\":\"0 0 auto\",\"layout_div_padding\":\"9px 9px 0px 9px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"9px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_outer_border_radius\":\"9px\",\"image_src\":\"32:full\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_div_padding\":[\"28px\",null,null,null,null]},\"_label\":\"Card Content\",\"_m\":{\"e\":1},\"layout_div_flex\":\"1 0 auto\",\"layout_div_flexbox\":true,\"layout_div_padding\":\"35px\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_label\":\"ST Caption\",\"_m\":{\"e\":1},\"text_columns_gap\":\"40px\",\"text_columns_rule_color\":\"#575acb\",\"text_columns_rule_style\":\"dotted\",\"text_columns_rule_width\":\"1px\",\"text_content\":\"<span>Expedited Services</span>\",\"text_font_family\":\"system:helveticaneue\",\"text_font_size\":\"33px\",\"text_font_weight\":\"fw-bold\",\"text_line_height\":\"1.35\",\"text_margin\":\"0px 0px 9px 0px\",\"text_text_color\":\"#0a2540\",\"text_text_transform\":\"uppercase\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_label\":\"ST Line\",\"line_base_font_size\":\"2px\",\"line_color\":\"rgba(10, 37, 64, 0.11)\",\"line_margin\":\"18px 0px 0px 0px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (2)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Expedited LTL Service:</strong> When you needed it yesterday, we have your back! Less-Than-Truckload shipping for smaller shipments. From one letter to a pallet we do it all!\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Critical Medical Delivery Services: </strong>Urgent transport for essential medical items.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Seamless Business-to-Business Deliveries: </strong>Efficient and timely delivery solutions for B2B needs, ensuring smooth operations between businesses.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"0px 0px 14px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<strong>Truckload Services:</strong> Full truckload options for larger, bulk deliveries.\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_label\":\"ST Feature Headline (3) (1) (1)\",\"text_base_font_size\":\"18px\",\"text_content\":\"<b>Delivery Vehicles Available: Flat Bed Truck, Sprinter Van, Straight Truck &amp; 53\\\" Tractor Trailers&nbsp;</b>\",\"text_flex_align\":\"baseline\",\"text_flex_justify\":\"flex-start\",\"text_font_weight\":\"fw-normal\",\"text_graphic\":true,\"text_graphic_icon\":\"o-check\",\"text_graphic_icon_color\":\"#0073e6\",\"text_graphic_icon_font_size\":\"18px\",\"text_graphic_margin\":\"0px 12px 7px 0px\",\"text_line_height\":\"1.5\",\"text_margin\":\"9px 0px 0px 0px\",\"text_subheadline_content\":\"This is a spot where you can elaborate on a particular detail of your product.\",\"text_subheadline_font_family\":\"system:helveticaneue\",\"text_subheadline_font_weight\":\"fw-normal\",\"text_subheadline_line_height\":\"1.5\",\"text_subheadline_spacing\":\"1px\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_color\":\"#425466\",\"text_tag\":\"p\",\"text_text_color\":\"#0a2540\",\"text_typing_color\":\"#0073e6\",\"text_typing_cursor_color\":\"#0073e6\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (2)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a2\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"LTL Services\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"ST Primary Button (1)\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#0b68a1\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"2px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"https://dev.mcleodexpedite.com/business-to-business-deliveries/\",\"anchor_margin\":\"auto 0px 0px 0px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_family\":\"system:helveticaneue\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_primary_content\":\"Business to Business\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_label\":\"Get Quote Button\",\"anchor_base_font_size\":\"18px\",\"anchor_bg_color\":\"#92afc0\",\"anchor_border_color\":\"#ffffff\",\"anchor_border_color_alt\":\"#ffffff\",\"anchor_border_radius\":\"6px\",\"anchor_border_width\":\"6px\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_color_alt\":\"rgba(0, 18, 36, 0.22)\",\"anchor_box_shadow_dimensions\":\"0em 0.65em 1em -0.35em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_graphic_icon\":\"o-arrow-right\",\"anchor_graphic_icon_alt\":\"o-arrow-right\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1em\",\"anchor_graphic_image_alt\":\"Placeholder Image\",\"anchor_href\":\"mailto:dispatch@mcleodexpedite.com?subject=McLeod Quote Request\",\"anchor_margin\":\"60px 0px 0px 0px\",\"anchor_max_width\":\"700px\",\"anchor_padding\":\"0.409em 1.563em 0.409em 1.563em\",\"anchor_primary_font_size\":\"2.5em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_line_height\":\"1.2\",\"anchor_primary_text_color\":\"rgb(1, 63, 102)\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color\":\"rgba(0, 0, 0, 0)\",\"anchor_primary_text_shadow_dimensions\":\"!8px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_family\":\"system:helveticaneue\",\"anchor_secondary_font_size\":\"14px\",\"anchor_secondary_font_weight\":\"fw-bold\",\"anchor_secondary_line_height\":\"1.2\",\"anchor_secondary_text_color\":\"#ffffff\",\"anchor_secondary_text_color_alt\":\"\",\"anchor_text_interaction\":\"x-anchor-scale-up\",\"anchor_text_primary_content\":\"Get Quote\",\"anchor_text_spacing\":\"3px\",\"anchor_width\":\"100%\",\"effects_alt\":true,\"effects_transform\":\"translate(0px, 0px)\",\"effects_transform_alt\":\"translate(0px, -1px)\",\"_modules\":[]}]}]}]}]'),
(1159,367,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1160,368,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services Graphics\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"50% 50%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14:0.37\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"warehouse-full\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Commercial\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"333:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-heart\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Residential\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"A plan for everyone.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Three simple ways to get started today.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color_alt\":\"#888888\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Buy Now\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"List your features out for each price level here\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"You can add as few or as many as you wish\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color_alt\":\"#888888\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Buy Now\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More inforamtion.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Answers to some frequently asked questions.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What is a FAQ section?\",\"hide_login\":\"\",\"_id\":132},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How do I make one?\",\"hide_login\":\"\",\"_id\":133},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How many questions can I add?\",\"hide_login\":\"\",\"_id\":134}]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"15px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why are FAQs so cool?\",\"hide_login\":\"\",\"_id\":138},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What makes them so useful?\",\"hide_login\":\"\",\"_id\":139},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why don\'t I use more FAQs?\",\"hide_login\":\"\",\"_id\":140}]}]}]}]}]'),
(1161,368,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1162,369,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services Graphics\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\".interactive-column {\\n  overflow: hidden;\\n}\\n\\n.interactive-column .x-bg {\\n  transition: transform 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .x-bg {\\n  transform: scale(1.1);\\n}\\n\\n.interactive-column .icon {\\n  opacity: 0;\\n  transition: opacity 0.5s ease-in;\\n}\\n\\n.interactive-column:hover .icon {\\n  opacity: 1;\\n}\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,\"50% 50%\",null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"50% 50%\",\"layout_row_layout_lg\":\"25% 25% 25% 25%\",\"layout_row_layout_md\":\"50% 50%\",\"layout_row_layout_sm\":\"50% 50%\",\"layout_row_layout_xl\":\"25% 25% 25% 25%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14:0.37\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"warehouse-full\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/ltl-delivery-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Commercial\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_lower_image\":\"333:full\",\"bg_lower_type\":\"image\",\"bg_upper_color\":\"rgba(43, 104, 150, 0.37)\",\"bg_upper_type\":\"color\",\"class\":\"interactive-column\",\"layout_column_bg_advanced\":true,\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_flex_align\":\"stretch\",\"layout_column_flex_justify\":\"space-between\",\"layout_column_flexbox\":true,\"layout_column_min_height\":\"600px\",\"layout_column_padding\":\"5% 3% 5% 3%\",\"undefined\":1201,\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"house-heart\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"3.4em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_padding\":\"2em 2em 2em 2em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text\":false,\"class\":\"icon\",\"_modules\":[]},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"transparent\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color\":\"transparent\",\"anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"anchor_flex_direction\":\"row-reverse\",\"anchor_flex_justify\":\"flex-end\",\"anchor_graphic\":true,\"anchor_graphic_icon\":\"l-angle-right\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_color\":\"#ffffff\",\"anchor_graphic_icon_color_alt\":\"\",\"anchor_graphic_icon_font_size\":\"1.375em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.mcleodexpedite.com/truckload-services/\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_weight\":\"800\",\"anchor_primary_letter_spacing\":\"0.05em\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"#ffffff\",\"anchor_primary_text_color_alt\":\"\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_margin\":\"0px 5px 0px 0px\",\"anchor_text_primary_content\":\"Residential\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"A plan for everyone.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Three simple ways to get started today.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View our projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View our projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More inforamtion.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Answers to some frequently asked questions.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What is a FAQ section?\",\"hide_login\":\"\",\"_id\":136},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How do I make one?\",\"hide_login\":\"\",\"_id\":137},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How many questions can I add?\",\"hide_login\":\"\",\"_id\":138}]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"15px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why are FAQs so cool?\",\"hide_login\":\"\",\"_id\":142},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What makes them so useful?\",\"hide_login\":\"\",\"_id\":143},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why don\'t I use more FAQs?\",\"hide_login\":\"\",\"_id\":144}]}]}]}]}]'),
(1163,369,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1164,370,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"A plan for everyone.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Three simple ways to get started today.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View our projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View our projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"More inforamtion.\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Answers to some frequently asked questions.\",\"text_subheadline_font_size\":\"0.75em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What is a FAQ section?\",\"hide_login\":\"\",\"_id\":128},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How do I make one?\",\"hide_login\":\"\",\"_id\":129},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"How many questions can I add?\",\"hide_login\":\"\",\"_id\":130}]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"15px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"accordion\",\"_bp_base\":\"4_4\",\"_order\":0,\"accordion_border_radius\":\"0px 0px 0px 0px\",\"accordion_border_style\":\"none\",\"accordion_border_width\":\"0px\",\"accordion_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_border_radius\":\"0px 0px 0px 0px\",\"accordion_content_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_content_font_weight\":\"400\",\"accordion_content_margin\":\"0em 0em 0em 0em\",\"accordion_content_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_grouped\":true,\"accordion_header_border_radius\":\"0px 0px 0px 0px\",\"accordion_header_border_style\":\"none\",\"accordion_header_border_width\":\"0px\",\"accordion_header_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"accordion_header_font_weight\":\"400\",\"accordion_header_margin\":\"0em 0em 0em 0em\",\"accordion_header_text_shadow_dimensions\":\"0px 0px 0px\",\"accordion_item_border_radius\":\"4px\",\"accordion_item_border_style\":\"none\",\"accordion_item_border_width\":\"0px\",\"accordion_item_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"accordion_item_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"accordion_item_padding\":\"0em 0em 0em 0em\",\"accordion_item_spacing\":\"15px\",\"accordion_margin\":\"0em 0em 0em 0em\",\"accordion_padding\":\"0em 0em 0em 0em\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why are FAQs so cool?\",\"hide_login\":\"\",\"_id\":134},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"What makes them so useful?\",\"hide_login\":\"\",\"_id\":135},{\"_type\":\"accordion-item\",\"_bp_base\":\"4_4\",\"_region\":\"content\",\"accordion_item_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\",\"accordion_item_header_content\":\"Why don\'t I use more FAQs?\",\"hide_login\":\"\",\"_id\":136}]}]}]}]}]'),
(1165,370,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1166,371,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_modules\":[]}]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(1167,371,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1170,372,'_wp_attached_file','2024/11/the-mooring-real-estate-logo.jpg'),
(1171,372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:380;s:6:\"height\";i:101;s:4:\"file\";s:40:\"2024/11/the-mooring-real-estate-logo.jpg\";s:8:\"filesize\";i:42209;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"the-mooring-real-estate-logo-300x80.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14148;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"the-mooring-real-estate-logo-150x101.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11960;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:39:\"the-mooring-real-estate-logo-100x27.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1172,372,'_cs_attachment_import','18e297ffe557c43c840bf0c69d5cbf25'),
(1173,373,'_wp_attached_file','2024/11/Erika-Ross-800-x-200-px-4.png'),
(1174,373,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:37:\"2024/11/Erika-Ross-800-x-200-px-4.png\";s:8:\"filesize\";i:244422;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Erika-Ross-800-x-200-px-4-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30757;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Erika-Ross-800-x-200-px-4-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Erika-Ross-800-x-200-px-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13281;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Erika-Ross-800-x-200-px-4-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124893;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:36:\"Erika-Ross-800-x-200-px-4-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1175,373,'_cs_attachment_import','f68cd6e3d208be0b286abaa5a9ac9365'),
(1176,374,'_wp_attached_file','2024/11/Erika-Ross-Website-Header-image_White800-x-200-px.png'),
(1177,374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:400;s:4:\"file\";s:61:\"2024/11/Erika-Ross-Website-Header-image_White800-x-200-px.png\";s:8:\"filesize\";i:274687;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Erika-Ross-Website-Header-image_White800-x-200-px-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30057;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"Erika-Ross-Website-Header-image_White800-x-200-px-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Erika-Ross-Website-Header-image_White800-x-200-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19184;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"Erika-Ross-Website-Header-image_White800-x-200-px-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134197;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"Erika-Ross-Website-Header-image_White800-x-200-px-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1178,374,'_cs_attachment_import','62e1a83032e823806addb1cf2e4aab08'),
(1179,375,'_cs_template_identifier','element|__multi__'),
(1180,375,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Moorings Section Break 1\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:4272616e64205365636f6e64617279\",\"section_padding\":\"120px 0px 30px 0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_column_base_font_size\":\"0.5em\",\"layout_column_bg_color\":\"rgb(255, 255, 255)\",\"layout_column_text_align\":\"center\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_src\":\"372:full\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Creative Contact Forms 1\",\"_m\":{\"e\":2},\"bg_upper_image\":\"373:full\",\"bg_upper_type\":\"image\",\"css\":\"$el {\\n  overflow-y: hidden;\\n}\\n\\n.row {\\n  display: flex;\\n  justify-content: space-between;\\n  flex-wrap: wrap;\\n  \\n  margin-top: 20px;\\n}\\n\\n.row.one-col > div {\\nflex: 1 1 100%;\\n}\\n\\n.row.two-cols > div {\\nflex: 0 1 48%;\\n}\\n\\n.wpcf7 select, \\n.wpcf7 textarea, \\n.wpcf7 input[type=\\\"text\\\"], \\n.wpcf7 input[type=\\\"password\\\"], \\n.wpcf7 input[type=\\\"datetime\\\"], \\n.wpcf7 input[type=\\\"datetime-local\\\"], \\n.wpcf7 input[type=\\\"date\\\"], \\n.wpcf7 input[type=\\\"month\\\"], \\n.wpcf7 input[type=\\\"time\\\"], \\n.wpcf7 input[type=\\\"week\\\"], \\n.wpcf7 input[type=\\\"number\\\"], \\n.wpcf7 input[type=\\\"email\\\"], \\n.wpcf7 input[type=\\\"url\\\"], \\n.wpcf7 input[type=\\\"search\\\"], \\n.wpcf7 input[type=\\\"tel\\\"], \\n.wpcf7 input[type=\\\"color\\\"] {\\n  border-radius: 0;\\n  border: 0;\\n  border-bottom: 2px solid #efefef;\\n  box-shadow: none;\\n  margin-bottom: 0;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"] {\\n  border: 0;\\n  box-shadow: none;\\n  text-shadow: none;\\n  background-color: #dac655;\\n  border-radius: 2px;\\n  padding: 10px 25px;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"]:hover {\\n  background-color: rgb(42, 42, 39);\\n}\",\"section_bg_color\":\"#fff\",\"section_border_style\":\"none\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"!0em\",\"section_padding\":\"!0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[null,\"100%\",null,null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\"$el {\\n  transform: translateY(-125px);\\n}\",\"layout_row_border_radius\":\"!5px 5px 5px 5px\",\"layout_row_border_style\":\"none\",\"layout_row_box_shadow_color\":\"rgba(209, 209, 209, 0.52)\",\"layout_row_box_shadow_dimensions\":\"!0.1em 0.2em 0.5em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"66.66% 33.33%\",\"layout_row_layout_lg\":\"66.66% 33.33%\",\"layout_row_layout_md\":\"66.66% 33.33%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"66.66% 33.33%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"50px auto 0px auto\",\"layout_row_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"#fff\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"91px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"30px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Contact Information\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"3em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"#fff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_src\":\"374:full\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"2125 Windward Way, Vero Beach, FL 32963\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-map-marker-alt\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>(772) 473-7762</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-phone\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"tel:(772) 473-7762\",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p><span class=\\\"context-email\\\"><a href=\\\"mailto:erika@erikalross.com\\\" style=\\\"color:#fff;\\\">erika@erikalross.com</a></span></p>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-envelope\",\"text_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"mailto:erika@erikalross.com?subject=The Moorings Realty Co. Inquiry\",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"1rem\",\"layout_row_gap_row\":\"1rem\",\"layout_row_grow\":true,\"layout_row_layout_lg\":\"100%\",\"layout_row_layout_md\":\"100%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"100%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_border_radius\":\"0px\",\"layout_column_border_style\":\"none\",\"layout_column_border_width\":\"0px\",\"layout_column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_column_padding\":\"0px\",\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3536.4250765639413!2d-80.33355992327415!3d27.58034803107912!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88def62f38be2133%3A0xab9d58e11b84b2bd!2sThe%20Moorings%20Realty%20Sales%20Co.!5e0!3m2!1sen!2sus!4v1723305039713!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]}]}]}'),
(1181,376,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Creative Contact Forms 1\",\"_m\":{\"e\":2},\"bg_upper_image\":\"373:full\",\"bg_upper_type\":\"image\",\"css\":\"$el {\\n  overflow-y: hidden;\\n}\\n\\n.row {\\n  display: flex;\\n  justify-content: space-between;\\n  flex-wrap: wrap;\\n  \\n  margin-top: 20px;\\n}\\n\\n.row.one-col > div {\\nflex: 1 1 100%;\\n}\\n\\n.row.two-cols > div {\\nflex: 0 1 48%;\\n}\\n\\n.wpcf7 select, \\n.wpcf7 textarea, \\n.wpcf7 input[type=\\\"text\\\"], \\n.wpcf7 input[type=\\\"password\\\"], \\n.wpcf7 input[type=\\\"datetime\\\"], \\n.wpcf7 input[type=\\\"datetime-local\\\"], \\n.wpcf7 input[type=\\\"date\\\"], \\n.wpcf7 input[type=\\\"month\\\"], \\n.wpcf7 input[type=\\\"time\\\"], \\n.wpcf7 input[type=\\\"week\\\"], \\n.wpcf7 input[type=\\\"number\\\"], \\n.wpcf7 input[type=\\\"email\\\"], \\n.wpcf7 input[type=\\\"url\\\"], \\n.wpcf7 input[type=\\\"search\\\"], \\n.wpcf7 input[type=\\\"tel\\\"], \\n.wpcf7 input[type=\\\"color\\\"] {\\n  border-radius: 0;\\n  border: 0;\\n  border-bottom: 2px solid #efefef;\\n  box-shadow: none;\\n  margin-bottom: 0;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"] {\\n  border: 0;\\n  box-shadow: none;\\n  text-shadow: none;\\n  background-color: #dac655;\\n  border-radius: 2px;\\n  padding: 10px 25px;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"]:hover {\\n  background-color: rgb(42, 42, 39);\\n}\",\"section_bg_color\":\"#fff\",\"section_border_style\":\"none\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"!0em\",\"section_padding\":\"!0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[null,\"100%\",null,null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\"$el {\\n  transform: translateY(-125px);\\n}\",\"layout_row_border_radius\":\"!5px 5px 5px 5px\",\"layout_row_border_style\":\"none\",\"layout_row_box_shadow_color\":\"rgba(209, 209, 209, 0.52)\",\"layout_row_box_shadow_dimensions\":\"!0.1em 0.2em 0.5em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"66.66% 33.33%\",\"layout_row_layout_lg\":\"66.66% 33.33%\",\"layout_row_layout_md\":\"66.66% 33.33%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"66.66% 33.33%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"50px auto 0px auto\",\"layout_row_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"#fff\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"91px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"30px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Contact Information\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"3em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"#fff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_src\":\"87:full\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>Vero Beach, FL 32966</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-map-marker-alt\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>(914) 382-1493</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-phone\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"tel:(772) 473-7762\",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p><span class=\\\"context-email\\\"><a href=\\\"mailto:erika@erikalross.com\\\" style=\\\"color:#fff;\\\">erika@erikalross.com</a></span></p>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-envelope\",\"text_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"mailto:baselineconstruction@zoho.com?subject=Baseline Stucco Inquiry \",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"1rem\",\"layout_row_gap_row\":\"1rem\",\"layout_row_grow\":true,\"layout_row_layout_lg\":\"100%\",\"layout_row_layout_md\":\"100%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"100%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_border_radius\":\"0px\",\"layout_column_border_style\":\"none\",\"layout_column_border_width\":\"0px\",\"layout_column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_column_padding\":\"0px\",\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3536.4250765639413!2d-80.33355992327415!3d27.58034803107912!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88def62f38be2133%3A0xab9d58e11b84b2bd!2sThe%20Moorings%20Realty%20Sales%20Co.!5e0!3m2!1sen!2sus!4v1723305039713!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]}]}]'),
(1182,376,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1184,377,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Creative Contact Forms 1\",\"_m\":{\"e\":2},\"bg_upper_image\":\"373:full\",\"bg_upper_type\":\"image\",\"css\":\"$el {\\n  overflow-y: hidden;\\n}\\n\\n.row {\\n  display: flex;\\n  justify-content: space-between;\\n  flex-wrap: wrap;\\n  \\n  margin-top: 20px;\\n}\\n\\n.row.one-col > div {\\nflex: 1 1 100%;\\n}\\n\\n.row.two-cols > div {\\nflex: 0 1 48%;\\n}\\n\\n.wpcf7 select, \\n.wpcf7 textarea, \\n.wpcf7 input[type=\\\"text\\\"], \\n.wpcf7 input[type=\\\"password\\\"], \\n.wpcf7 input[type=\\\"datetime\\\"], \\n.wpcf7 input[type=\\\"datetime-local\\\"], \\n.wpcf7 input[type=\\\"date\\\"], \\n.wpcf7 input[type=\\\"month\\\"], \\n.wpcf7 input[type=\\\"time\\\"], \\n.wpcf7 input[type=\\\"week\\\"], \\n.wpcf7 input[type=\\\"number\\\"], \\n.wpcf7 input[type=\\\"email\\\"], \\n.wpcf7 input[type=\\\"url\\\"], \\n.wpcf7 input[type=\\\"search\\\"], \\n.wpcf7 input[type=\\\"tel\\\"], \\n.wpcf7 input[type=\\\"color\\\"] {\\n  border-radius: 0;\\n  border: 0;\\n  border-bottom: 2px solid #efefef;\\n  box-shadow: none;\\n  margin-bottom: 0;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"] {\\n  border: 0;\\n  box-shadow: none;\\n  text-shadow: none;\\n  background-color: #dac655;\\n  border-radius: 2px;\\n  padding: 10px 25px;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"]:hover {\\n  background-color: rgb(42, 42, 39);\\n}\",\"section_bg_color\":\"#fff\",\"section_border_style\":\"none\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"!0em\",\"section_padding\":\"!0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[null,\"100%\",null,null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\"$el {\\n  transform: translateY(-125px);\\n}\",\"layout_row_border_radius\":\"!5px 5px 5px 5px\",\"layout_row_border_style\":\"none\",\"layout_row_box_shadow_color\":\"rgba(209, 209, 209, 0.52)\",\"layout_row_box_shadow_dimensions\":\"!0.1em 0.2em 0.5em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"66.66% 33.33%\",\"layout_row_layout_lg\":\"66.66% 33.33%\",\"layout_row_layout_md\":\"66.66% 33.33%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"66.66% 33.33%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"50px auto 0px auto\",\"layout_row_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"#fff\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"91px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"30px 30px 30px 30px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_margin\":\"50px 0px 0px 0px\",\"image_src\":\"87:full\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>Vero Beach, FL 32966</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-map-marker-alt\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>(914) 382-1493</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-phone\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"tel:(772) 473-7762\",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p><span class=\\\"context-email\\\"><a href=\\\"mailto:erika@erikalross.com\\\" style=\\\"color:#fff;\\\">erika@erikalross.com</a></span></p>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-envelope\",\"text_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"mailto:baselineconstruction@zoho.com?subject=Baseline Stucco Inquiry \",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"1rem\",\"layout_row_gap_row\":\"1rem\",\"layout_row_grow\":true,\"layout_row_layout_lg\":\"100%\",\"layout_row_layout_md\":\"100%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"100%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_border_radius\":\"0px\",\"layout_column_border_style\":\"none\",\"layout_column_border_width\":\"0px\",\"layout_column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_column_padding\":\"0px\",\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3536.4250765639413!2d-80.33355992327415!3d27.58034803107912!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88def62f38be2133%3A0xab9d58e11b84b2bd!2sThe%20Moorings%20Realty%20Sales%20Co.!5e0!3m2!1sen!2sus!4v1723305039713!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]}]}]'),
(1185,377,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1186,378,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Creative Contact Forms 1\",\"_m\":{\"e\":2},\"bg_upper_image\":\"373:full\",\"bg_upper_type\":\"image\",\"css\":\"$el {\\n  overflow-y: hidden;\\n}\\n\\n.row {\\n  display: flex;\\n  justify-content: space-between;\\n  flex-wrap: wrap;\\n  \\n  margin-top: 20px;\\n}\\n\\n.row.one-col > div {\\nflex: 1 1 100%;\\n}\\n\\n.row.two-cols > div {\\nflex: 0 1 48%;\\n}\\n\\n.wpcf7 select, \\n.wpcf7 textarea, \\n.wpcf7 input[type=\\\"text\\\"], \\n.wpcf7 input[type=\\\"password\\\"], \\n.wpcf7 input[type=\\\"datetime\\\"], \\n.wpcf7 input[type=\\\"datetime-local\\\"], \\n.wpcf7 input[type=\\\"date\\\"], \\n.wpcf7 input[type=\\\"month\\\"], \\n.wpcf7 input[type=\\\"time\\\"], \\n.wpcf7 input[type=\\\"week\\\"], \\n.wpcf7 input[type=\\\"number\\\"], \\n.wpcf7 input[type=\\\"email\\\"], \\n.wpcf7 input[type=\\\"url\\\"], \\n.wpcf7 input[type=\\\"search\\\"], \\n.wpcf7 input[type=\\\"tel\\\"], \\n.wpcf7 input[type=\\\"color\\\"] {\\n  border-radius: 0;\\n  border: 0;\\n  border-bottom: 2px solid #efefef;\\n  box-shadow: none;\\n  margin-bottom: 0;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"] {\\n  border: 0;\\n  box-shadow: none;\\n  text-shadow: none;\\n  background-color: #dac655;\\n  border-radius: 2px;\\n  padding: 10px 25px;\\n}\\n\\n.wpcf7 input[type=\\\"submit\\\"]:hover {\\n  background-color: rgb(42, 42, 39);\\n}\",\"section_bg_color\":\"#fff\",\"section_border_style\":\"none\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"!0em\",\"section_padding\":\"!0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[null,\"100%\",null,null,null]},\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"css\":\"$el {\\n  transform: translateY(-125px);\\n}\",\"layout_row_border_radius\":\"!5px 5px 5px 5px\",\"layout_row_border_style\":\"none\",\"layout_row_box_shadow_color\":\"rgba(209, 209, 209, 0.52)\",\"layout_row_box_shadow_dimensions\":\"!0.1em 0.2em 0.5em 0em\",\"layout_row_gap_column\":\"0rem\",\"layout_row_gap_row\":\"0rem\",\"layout_row_layout\":\"66.66% 33.33%\",\"layout_row_layout_lg\":\"66.66% 33.33%\",\"layout_row_layout_md\":\"66.66% 33.33%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"66.66% 33.33%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"50px auto 0px auto\",\"layout_row_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"#fff\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"91px 30px 30px 30px\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"layout_column_border_style\":\"none\",\"layout_column_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"layout_column_padding\":\"30px 30px 30px 30px\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"image_margin\":\"50px 0px 0px 0px\",\"image_src\":\"87:full\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>Vero Beach, FL 32966</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-map-marker-alt\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<p>(914) 382-1493</p>\",\"text_content_margin\":\"0px\",\"text_font_family\":\"google:lato\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-phone\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"tel:(772) 473-7762\",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #ffffff;\\\"><a href=\\\"mailto:baselineconstruction@zoho.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"color: #ffffff; text-decoration: underline;\\\">baselineconstruction@<wbr />zoho.com</a></span></span>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"l-envelope\",\"text_graphic_icon_border_radius\":\"!0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_color\":\"#fff\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em 1.267em 0em 0em\",\"text_href\":\"mailto:baselineconstruction@zoho.com?subject=Baseline Stucco Inquiry \",\"text_link\":true,\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_content\":\"11111111\",\"text_subheadline_text_color\":\"#fff\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"#ffffff\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"47px\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_row_border_radius\":\"0px\",\"layout_row_border_style\":\"none\",\"layout_row_border_width\":\"0px\",\"layout_row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_row_gap_column\":\"1rem\",\"layout_row_gap_row\":\"1rem\",\"layout_row_grow\":true,\"layout_row_layout_lg\":\"100%\",\"layout_row_layout_md\":\"100%\",\"layout_row_layout_sm\":\"100%\",\"layout_row_layout_xl\":\"100%\",\"layout_row_layout_xs\":\"100%\",\"layout_row_margin\":\"0px auto 0px auto\",\"layout_row_padding\":\"0px\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"layout_column_border_radius\":\"0px\",\"layout_column_border_style\":\"none\",\"layout_column_border_width\":\"0px\",\"layout_column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"layout_column_padding\":\"0px\",\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3536.4250765639413!2d-80.33355992327415!3d27.58034803107912!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88def62f38be2133%3A0xab9d58e11b84b2bd!2sThe%20Moorings%20Realty%20Sales%20Co.!5e0!3m2!1sen!2sus!4v1723305039713!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]}]}]'),
(1187,378,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1191,379,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(1192,379,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1194,380,'_wp_page_template','template-blank-4.php'),
(1195,380,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1196,380,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Core Values\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em 0em 1em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_content\":\"Crafting Strength and Beauty, One Project at a Time\",\"text_font_size\":\"2em\",\"text_margin\":\"0em 0em 4em 0em\",\"text_text_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Quality Craftsmanship\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"people-roof\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Customer Focus\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"face-sunglasses\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Integrity\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"handshake-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Innovation\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"globe-pointer\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]}]}]}]'),
(1197,381,'_cornerstone_data','[]'),
(1198,381,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1199,380,'_cs_last_save','2024-11-26 17:14:40'),
(1200,380,'_cs_states_cache',''),
(1201,382,'_cornerstone_data','[]'),
(1202,382,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1203,380,'_edit_last','1'),
(1204,380,'_edit_lock','1732579545:1'),
(1205,383,'_menu_item_type','post_type'),
(1206,383,'_menu_item_menu_item_parent','0'),
(1207,383,'_menu_item_object_id','380'),
(1208,383,'_menu_item_object','page'),
(1209,383,'_menu_item_target',''),
(1210,383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1211,383,'_menu_item_xfn',''),
(1212,383,'_menu_item_url',''),
(1213,384,'_menu_item_type','post_type'),
(1214,384,'_menu_item_menu_item_parent','0'),
(1215,384,'_menu_item_object_id','380'),
(1216,384,'_menu_item_object','page'),
(1217,384,'_menu_item_target',''),
(1218,384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1219,384,'_menu_item_xfn',''),
(1220,384,'_menu_item_url',''),
(1222,131,'_wp_old_date','2024-11-25'),
(1223,384,'menu-item-anchor_graphic_menu_item_display','on'),
(1224,384,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1225,384,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1226,132,'_wp_old_date','2024-11-25'),
(1227,385,'_menu_item_type','post_type'),
(1228,385,'_menu_item_menu_item_parent','0'),
(1229,385,'_menu_item_object_id','133'),
(1230,385,'_menu_item_object','page'),
(1231,385,'_menu_item_target',''),
(1232,385,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1233,385,'_menu_item_xfn',''),
(1234,385,'_menu_item_url',''),
(1236,125,'_wp_old_date','2024-11-25'),
(1237,385,'menu-item-anchor_graphic_menu_item_display','on'),
(1238,385,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1239,385,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1240,139,'_wp_old_date','2024-11-25'),
(1241,139,'menu-item-anchor_graphic_menu_item_display','on'),
(1242,139,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1243,139,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1244,324,'_wp_old_date','2024-11-25'),
(1245,324,'menu-item-anchor_graphic_menu_item_display','on'),
(1246,324,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1247,324,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1248,127,'_wp_old_date','2024-11-25'),
(1249,127,'menu-item-anchor_graphic_menu_item_display','on'),
(1250,127,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1251,127,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1252,383,'menu-item-anchor_graphic_menu_item_display','on'),
(1253,383,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1254,383,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1255,126,'_wp_old_date','2024-11-25'),
(1256,126,'menu-item-anchor_graphic_menu_item_display','on'),
(1257,126,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1258,126,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1259,128,'_wp_old_date','2024-11-25'),
(1260,128,'menu-item-anchor_graphic_menu_item_display','on'),
(1261,128,'menu-item-anchor_graphic_icon','l-hand-pointer'),
(1262,128,'menu-item-anchor_graphic_icon_alt','hand-pointer'),
(1264,386,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Core Values\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Quality Craftsmanship\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"people-roof\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"35px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Customer Focus\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"face-sunglasses\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Integrity\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"handshake-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"35px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Innovation\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"globe-pointer\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(1265,386,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1266,387,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Core Values\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_content\":\"Crafting Strength and Beauty, One Project at a Time\",\"text_font_size\":\"2em\",\"text_text_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Quality Craftsmanship\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"people-roof\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"35px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Customer Focus\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"face-sunglasses\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Integrity\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"handshake-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"35px\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Innovation\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"globe-pointer\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"2em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(1267,387,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1274,388,'_wp_attached_file','2024/11/cropped-Baseline-Construction-200-x-200-px.png'),
(1275,388,'_wp_attachment_context','site-icon'),
(1276,388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:54:\"2024/11/cropped-Baseline-Construction-200-x-200-px.png\";s:8:\"filesize\";i:141829;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23488;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12534;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57327;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34520;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:54:\"cropped-Baseline-Construction-200-x-200-px-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31170;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:52:\"cropped-Baseline-Construction-200-x-200-px-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1277,389,'_wp_trash_meta_status','publish'),
(1278,389,'_wp_trash_meta_time','1732637914'),
(1283,152,'_wp_trash_meta_status','tco-data'),
(1284,152,'_wp_trash_meta_time','1732639295'),
(1285,152,'_wp_desired_post_slug','untitled-header-2'),
(1286,20,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"bar\":[\"mk-0\"],\"dynamic-content\":[]},\"el:e2\":{\"container\":[\"mk-1\",\"mk-2\",\"mk-3\",\"mk-4\",\"mk-5\",\"mk-6\"],\"dynamic-content\":[]},\"el:e6\":{\"container\":[\"mk-1\",\"mk-3\",\"mk-4\",\"mk-7\",\"mk-8\",\"mk-9\"],\"dynamic-content\":[]},\"el:e8\":{\"container\":[\"mk-1\",\"mk-2\",\"mk-3\",\"mk-8\",\"mk-9\",\"mk-a\"],\"dynamic-content\":[]},\"el:e10\":{\"container\":[\"mk-1\",\"mk-6\",\"mk-8\",\"mk-b\"],\"dynamic-content\":[]},\"el:e3\":{\"menu\":[\"mk-c\",\"mk-d\"],\"dropdown\":[\"mk-f\"],\"top-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-j\",\"mk-k\",\"mk-l\",\"mk-m\",\"mk-n\",\"mk-o\"],\"sub-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-k\",\"mk-l\",\"mk-m\",\"mk-p\",\"mk-q\",\"mk-r\"],\"dynamic-content\":[]},\"el:e5\":{\"menu\":[\"mk-c\",\"mk-d\"],\"dropdown\":[\"mk-f\"],\"top-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-j\",\"mk-k\",\"mk-l\",\"mk-m\",\"mk-n\",\"mk-o\"],\"sub-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-k\",\"mk-l\",\"mk-m\",\"mk-p\",\"mk-q\",\"mk-r\"],\"dynamic-content\":[]},\"el:e9\":{\"menu\":[\"mk-c\",\"mk-e\"],\"toggle-anchor\":[\"mk-g\",\"mk-h\",\"mk-s\"],\"top-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-l\",\"mk-n\",\"mk-o\",\"mk-q\",\"mk-r\",\"mk-t\",\"mk-u\",\"mk-v\"],\"sub-links\":[\"mk-g\",\"mk-h\",\"mk-i\",\"mk-l\",\"mk-n\",\"mk-q\",\"mk-r\",\"mk-t\",\"mk-u\",\"mk-w\"],\"off-canvas\":[\"mk-11\"],\"dynamic-content\":[]},\"el:e11\":{\"anchor\":[\"mk-h\",\"mk-l\",\"mk-m\",\"mk-r\",\"mk-t\",\"mk-x\"],\"dynamic-content\":[]},\"el:e4\":{\"image\":[\"mk-y\",\"mk-z\"],\"dynamic-content\":[]},\"el:e7\":{\"image\":[\"mk-y\",\"mk-10\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]},\"el:e12\":{\"dynamic-content\":[]},\"el:e13\":{\"dynamic-content\":[]},\"el:e14\":{\"dynamic-content\":[]}},\"tss\":\" .mk-0.x-bar{height:7em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:16px;background-color:hsl(0, 0%, 100%);z-index:9999;} .mk-0 .x-bar-content{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-grow:0;flex-shrink:1;flex-basis:100%;height:7em;} .mk-0.x-bar-outer-spacers:after,.mk-0.x-bar-outer-spacers:before{flex-basis:0em;width:0em!important;height:0em;} .mk-0.x-bar-space{font-size:16px;height:7em;} .mk-1.x-bar-container{display:flex;flex-direction:row;align-items:center;flex-basis:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .mk-2.x-bar-container{justify-content:center;} .mk-3.x-bar-container{flex-grow:0;flex-shrink:1;z-index:1;} .mk-4.x-bar-container{width:100%;} .mk-5.x-bar-container{margin-top:0em;margin-right:0em;margin-bottom:0em;margin-left:2em;} .mk-7.x-bar-container{justify-content:flex-start;} .mk-9.x-bar-container{padding-top:0em;padding-right:1.25em;padding-bottom:0em;padding-left:1.25em;} .mk-a.x-bar-container{width:140px;} .mk-b.x-bar-container{justify-content:flex-end;flex-grow:1;flex-shrink:0;width:320px;z-index:auto;} .mk-d{font-size:0.9em;display:flex;flex-direction:row;justify-content:space-around;align-items:stretch;align-self:stretch;flex-grow:0;flex-shrink:1;flex-basis:auto;} .mk-d > li,.mk-d > li > a{flex-grow:0;flex-shrink:1;flex-basis:auto;} .mk-e{font-size:1em;} .mk-e [data-x-toggle-collapse]{transition-duration:300ms;transition-timing-function:cubic-bezier(0.400, 0.000, 0.200, 1.000);} .mk-f .x-dropdown {width:18em;font-size:12px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;background-color:%%post tss-color%%global-color:4272616e64205072696d617279%%\\/post%%;box-shadow:0em 0.15em 2em 0em rgba(0, 0, 0, 0.15);transition-duration:500ms,500ms,0s;transition-timing-function:cubic-bezier(0.400, 0.000, 0.200, 1.000);} .mk-f .x-dropdown:not(.x-active) {transition-delay:0s,0s,500ms;} .mk-g.x-anchor {font-size:1em;} .mk-h.x-anchor {border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .mk-h.x-anchor .x-anchor-content {display:flex;flex-direction:row;justify-content:center;align-items:center;} .mk-i.x-anchor {background-color:transparent;} .mk-j.x-anchor .x-anchor-content {padding-top:0.5em;padding-right:0.75em;padding-bottom:0.5em;padding-left:0.75em;} .mk-j.x-anchor .x-anchor-text {margin-right:4px;} .mk-j.x-anchor .x-anchor-text-primary {font-family:%%post tss-ff%%426f647920436f7079%%\\/post%%;font-size:1.25em;font-weight:%%post tss-fw%%426f647920436f7079|400%%\\/post%%;letter-spacing:.1em;margin-right:calc(.1em * -1);color:%%post tss-color%%global-color:4272616e64205365636f6e64617279%%\\/post%%;} .mk-j.x-anchor:hover .x-anchor-text-primary,.mk-j.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-j.x-anchor .x-anchor-text-primary {color:hsl(0, 2%, 69%);} .mk-j.x-anchor .x-anchor-sub-indicator {color:hsl(0, 0%, 100%);} .mk-j.x-anchor:hover .x-anchor-sub-indicator,.mk-j.x-anchor[class*=\\\"active\\\"] .x-anchor-sub-indicator,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-j.x-anchor .x-anchor-sub-indicator {color:hsl(0, 0%, 54%);} .mk-j > .is-primary {color:black;transform-origin:50% 0%;} .mk-k.x-anchor .x-anchor-text {margin-top:4px;margin-bottom:4px;margin-left:4px;} .mk-l.x-anchor .x-anchor-text-primary {font-style:normal;line-height:1;} .mk-m.x-anchor .x-anchor-text-primary {text-transform:uppercase;} .mk-n.x-anchor .x-anchor-sub-indicator {font-size:1em;} .mk-n > .is-primary {height:3px;} .mk-o > .is-primary {width:100%;} .mk-p.x-anchor {width:100%;} .mk-p.x-anchor .x-anchor-content {padding-top:1.25em;padding-right:1.25em;padding-bottom:1.25em;padding-left:1.25em;} .mk-p.x-anchor:hover,.mk-p.x-anchor[class*=\\\"active\\\"],[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-p.x-anchor {background-color:rgba(255, 255, 255, 0.05);} .mk-p.x-anchor .x-anchor-text-primary {font-family:%%post tss-ff%%48656164696e6773%%\\/post%%;font-weight:%%post tss-fw%%48656164696e6773|700%%\\/post%%;letter-spacing:0.125em;margin-right:calc(0.125em * -1);color:white;} .mk-p.x-anchor .x-anchor-text-secondary {margin-top:0.5em;font-family:inherit;font-size:1em;font-style:normal;font-weight:inherit;line-height:1;color:rgba(255, 255, 255, 0.5);} .mk-p.x-anchor .x-anchor-sub-indicator {margin-top:0px;margin-right:4px;margin-bottom:0px;margin-left:auto;font-size:1.5em;color:rgba(255, 255, 255, 0.5);} .mk-p > .is-primary {width:3px;height:100%;transform-origin:0% 50%;} .mk-q.x-anchor .x-anchor-text {margin-right:auto;} .mk-q > .is-primary {color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .mk-r.x-anchor .x-anchor-text-primary {font-size:1em;} .mk-s.x-anchor {width:3em;height:3em;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;border-bottom-left-radius:5px;background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .mk-s.x-anchor:hover,.mk-s.x-anchor[class*=\\\"active\\\"],[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-s.x-anchor {background-color:rgb(255, 255, 255);} .mk-s.x-anchor .x-graphic {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .mk-s.x-anchor .x-graphic-icon {font-size:1.25em;width:1em;color:rgba(0, 0, 0, 0.35);border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;height:1em;line-height:1em;background-color:transparent;} .mk-s.x-anchor:hover .x-graphic-icon,.mk-s.x-anchor[class*=\\\"active\\\"] .x-graphic-icon,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-s.x-anchor .x-graphic-icon {color:rgba(0, 0, 0, 0.75);} .mk-s.x-anchor .x-toggle {color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .mk-s.x-anchor:hover .x-toggle,.mk-s.x-anchor[class*=\\\"active\\\"] .x-toggle,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-s.x-anchor .x-toggle {color:%%post tss-color%%global-color:primary%%\\/post%%;} .mk-s.x-anchor .x-toggle-more-h,.mk-s.x-anchor .x-toggle-more-v {margin-top:1.5em;margin-right:1.5em;margin-bottom:1.5em;margin-left:1.5em;font-size:6px;} .mk-s.x-anchor .x-toggle-more-1 {transform:translate3d(-1.5em , 0, 0);} .mk-s.x-anchor .x-toggle-more-3 {transform:translate3d(1.5em, 0, 0);} .mk-t.x-anchor .x-anchor-content {padding-top:0.575em;padding-bottom:0.575em;} .mk-t.x-anchor .x-anchor-text {margin-top:5px;margin-bottom:5px;margin-left:5px;} .mk-t.x-anchor .x-anchor-text-primary {font-family:inherit;font-weight:inherit;} .mk-u.x-anchor .x-anchor-content {padding-right:0em;} .mk-u.x-anchor .x-anchor-sub-indicator {margin-top:5px;margin-right:5px;margin-bottom:5px;} .mk-u > .is-primary {transform-origin:100% 100%;} .mk-v.x-anchor .x-anchor-content {padding-left:0em;} .mk-v.x-anchor .x-anchor-text-primary {color:hsl(0, 0%, 100%);} .mk-v.x-anchor:hover .x-anchor-text-primary,.mk-v.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-v.x-anchor .x-anchor-text-primary {color:hsl(0, 1%, 73%);} .mk-v.x-anchor .x-anchor-sub-indicator {margin-left:5px;color:hsl(0, 0%, 98%);} .mk-v.x-anchor:hover .x-anchor-sub-indicator,.mk-v.x-anchor[class*=\\\"active\\\"] .x-anchor-sub-indicator,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-v.x-anchor .x-anchor-sub-indicator {color:hsl(0, 1%, 57%);} .mk-w.x-anchor .x-anchor-content {padding-left:.75em;} .mk-w.x-anchor .x-anchor-text-primary {color:hsl(0, 1%, 98%);} .mk-w.x-anchor:hover .x-anchor-text-primary,.mk-w.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-w.x-anchor .x-anchor-text-primary {color:hsl(0, 0%, 52%);} .mk-w.x-anchor .x-anchor-sub-indicator {margin-left:15px;color:hsl(0, 0%, 96%);} .mk-w.x-anchor:hover .x-anchor-sub-indicator,.mk-w.x-anchor[class*=\\\"active\\\"] .x-anchor-sub-indicator,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-w.x-anchor .x-anchor-sub-indicator {color:hsl(0, 0%, 55%);} .mk-w > .is-primary {width:3%;} .mk-x.x-anchor {margin-top:0em;margin-right:3em;margin-bottom:0em;margin-left:0em;border-top-left-radius:0.35em;border-top-right-radius:0.35em;border-bottom-right-radius:0.35em;border-bottom-left-radius:0.35em;font-size:1.25em;background-color:%%post tss-color%%global-color:primary%%\\/post%%;box-shadow:0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);} .mk-x.x-anchor .x-anchor-content {padding-right:0.85em;padding-left:0.85em;} .mk-x.x-anchor .x-anchor-text {margin-right:5px;} .mk-x.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .mk-x.x-anchor:hover .x-anchor-text-primary,.mk-x.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .mk-x.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .mk-y.x-image{font-size:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .mk-z.x-image{margin-top:0em;margin-right:1em;margin-bottom:0em;margin-left:1em;} .mk-11{font-size:20px;transition-duration:500ms;} .mk-11 .x-off-canvas-bg{background-color:rgba(0, 0, 0, 0.7);transition-duration:500ms;transition-timing-function:cubic-bezier(0.400, 0.000, 0.200, 1.000);} .mk-11 .x-off-canvas-close{width:calc(1em * 1.5);height:calc(1em * 1.5);font-size:1em;color:rgb(255, 255, 255);transition-duration:0.3s,500ms,500ms;transition-timing-function:ease-in-out,cubic-bezier(0.400, 0.000, 0.200, 1.000),cubic-bezier(0.400, 0.000, 0.200, 1.000);} .mk-11 .x-off-canvas-close:focus,.mk-11 .x-off-canvas-close:hover{color:%%post tss-color%%global-color:YFP6101dwXohQOJ4sw%%\\/post%%;} .mk-11 .x-off-canvas-content{max-width:275px;padding-top:calc(1em * 1.5);padding-right:calc(1em * 1.5);padding-bottom:calc(1em * 1.5);padding-left:calc(1em * 1.5);border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;box-shadow:0em 0em 2em 0em rgba(0, 0, 0, 0.25);transition-duration:500ms;transition-timing-function:cubic-bezier(0.400, 0.000, 0.200, 1.000);}\",\"element_css\":\"          \"}}'),
(1288,390,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-.02em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"2em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"40px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"2/3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(1289,390,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1293,391,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-.02em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"2em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"40px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_object_fit\":\"contain\",\"image_outer_border_radius\":\"!0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"lg md xl\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em 0em .5em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"sm xs\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0em 0em .5em 0em\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(1294,391,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1295,150,'_wp_trash_meta_status','draft'),
(1296,150,'_wp_trash_meta_time','1732640222'),
(1297,150,'_wp_desired_post_slug',''),
(1298,392,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"section_bg_color\":\"rgb(255, 255, 255)\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_bp_data4_4\":{\"layout_row_layout\":[\"100%\",null,null,null,null]},\"_m\":{\"e\":2},\"layout_row_global_container\":true,\"layout_row_layout\":\"50% 50%\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Send Us a Message!\",\"text_content_margin\":\"0px 0px 10px 0px\",\"text_font_size\":\"2.1em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Questions? Comments? Or suggestions? Feel free to send us a message!\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_text_color\":\"global-color:4272616e64205072696d617279\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\",\"_modules\":[]},{\"_type\":\"form-integration\",\"_bp_base\":\"4_4\",\"form_integration_contact_form_7_id\":\"614\",\"form_integration_embed_content\":\"[ninja_form id=1]\",\"_modules\":[]}]},{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"map\",\"_bp_base\":\"4_4\",\"css\":\"$el {\\n  overflow: hidden;\\n}\",\"frame_bg_color\":\"#ffffff\",\"frame_border_radius\":\"0em\",\"frame_border_style\":\"none\",\"frame_border_width\":\"0px\",\"frame_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"frame_content_height\":\"450px\",\"frame_content_sizing\":\"fixed-height\",\"frame_margin\":\"0em\",\"frame_padding\":\"0em\",\"map_embed_code\":\"<iframe src=\\\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d28274.657445833!2d-80.41748058278951!3d27.645192577947732!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88de5ee460d0c2a5%3A0xbce1aea5a8f725a4!2sVero%20Beach%2C%20FL!5e0!3m2!1sen!2sus!4v1732579218749!5m2!1sen!2sus\\\" width=\\\"600\\\" height=\\\"450\\\" style=\\\"border:0;\\\" allowfullscreen=\\\"\\\" loading=\\\"lazy\\\" referrerpolicy=\\\"no-referrer-when-downgrade\\\"></iframe>\",\"_modules\":[]}]}]}]}]'),
(1299,392,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1300,393,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"!0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0em 0em 1em 0em\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0em 0em 4em 0em\",\"text_text_align\":\"left\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Commercial Stucco Services Include:</strong></h3>\\n<ul>\\n<li>Stucco application for new commercial construction projects.</li>\\n<li>Renovations and updates to existing stucco exteriors.</li>\\n<li>EIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.</li>\\n<li>Crack repair and restoration to maintain a professional appearance.</li>\\n<li>Custom texturing and design to align with your company&rsquo;s branding.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"2em 0em 2em 0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq/Ft Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1301,393,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1302,394,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"75px 0px 75px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(3.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Core Values\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em 0em 1em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"text_content\":\"Crafting Strength and Beauty, One Project at a Time\",\"text_font_size\":\"2em\",\"text_margin\":\"0em 0em 4em 0em\",\"text_text_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Quality Craftsmanship\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"people-roof\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Customer Focus\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"face-sunglasses\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Integrity\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"handshake-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Innovation\",\"text_content_margin\":\"0.75em 0em 0.75em 0em\",\"text_flex_align\":\"flex-start\",\"text_flex_direction\":\"column\",\"text_font_size\":\"1.25em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"globe-pointer\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:primary\",\"text_graphic_icon_font_size\":\"6em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0em\",\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.</p>\",\"text_font_size\":\"1.2em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.7\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"6em\",\"hide_login\":\"\"}]}]}]}]'),
(1303,394,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1306,136,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"section\":[\"m3s-0\",\"m3s-1\",\"m3s-2\",\"m3s-3\",\"m3s-4\",\"m3s-5\"],\"dynamic-content\":[]},\"el:e5\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-5\",\"m3s-6\",\"m3s-7\"],\"dynamic-content\":[]},\"el:e18\":{\"section\":[\"m3s-0\",\"m3s-1\",\"m3s-2\",\"m3s-5\",\"m3s-8\"],\"dynamic-content\":[]},\"el:e23\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-5\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-b\"],\"dynamic-content\":[]},\"el:e41\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-d\",\"m3s-e\"],\"dynamic-content\":[]},\"el:e56\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-6\",\"m3s-d\",\"m3s-e\",\"m3s-f\"],\"dynamic-content\":[]},\"el:e81\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-d\",\"m3s-e\"],\"dynamic-content\":[]},\"el:e106\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-6\",\"m3s-9\",\"m3s-d\",\"m3s-e\",\"m3s-g\"],\"dynamic-content\":[]},\"el:e121\":{\"section\":[\"m3s-0\",\"m3s-2\",\"m3s-6\",\"m3s-9\",\"m3s-d\",\"m3s-e\",\"m3s-g\"],\"dynamic-content\":[]},\"el:e37\":{\"section\":[\"m3s-2\",\"m3s-4\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-c\",\"m3s-d\"],\"dynamic-content\":[]},\"el:e52\":{\"section\":[\"m3s-2\",\"m3s-4\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-c\",\"m3s-d\"],\"dynamic-content\":[]},\"el:e77\":{\"section\":[\"m3s-2\",\"m3s-4\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-c\",\"m3s-d\"],\"dynamic-content\":[]},\"el:e102\":{\"section\":[\"m3s-2\",\"m3s-4\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-c\",\"m3s-d\"],\"dynamic-content\":[]},\"el:e117\":{\"section\":[\"m3s-2\",\"m3s-6\",\"m3s-9\",\"m3s-a\",\"m3s-d\",\"m3s-h\"],\"dynamic-content\":[]},\"el:e21\":{\"effects\":[\"m3s-i\"],\"anchor\":[\"m3s-19\"],\"dynamic-content\":[]},\"el:e22\":{\"effects\":[\"m3s-j\"],\"text-headline\":[\"m3s-w\",\"m3s-x\",\"m3s-11\",\"m3s-12\"],\"dynamic-content\":[]},\"el:e2\":{\"classic-row-v2\":[\"m3s-k\",\"m3s-l\"],\"dynamic-content\":[]},\"el:e6\":{\"classic-row-v2\":[\"m3s-k\",\"m3s-l\"],\"dynamic-content\":[]},\"el:e11\":{\"classic-row-v2\":[\"m3s-k\",\"m3s-l\"],\"dynamic-content\":[]},\"el:e19\":{\"classic-row-v2\":[\"m3s-k\",\"m3s-l\"],\"dynamic-content\":[]},\"el:e24\":{\"classic-row-v2\":[\"m3s-l\",\"m3s-m\"],\"dynamic-content\":[]},\"el:e3\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e7\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e9\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\",\"m3s-p\"],\"dynamic-content\":[]},\"el:e12\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e14\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e16\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e20\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-o\"],\"dynamic-content\":[]},\"el:e25\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-q\",\"m3s-r\"],\"dynamic-content\":[]},\"el:e29\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-q\",\"m3s-s\"],\"dynamic-content\":[]},\"el:e33\":{\"classic-column-v2\":[\"m3s-n\",\"m3s-q\",\"m3s-t\"],\"dynamic-content\":[]},\"el:e4\":{\"text-headline\":[\"m3s-u\",\"m3s-v\",\"m3s-w\",\"m3s-x\",\"m3s-y\"],\"dynamic-content\":[]},\"el:e26\":{\"text-headline\":[\"m3s-u\",\"m3s-v\",\"m3s-w\",\"m3s-10\",\"m3s-12\",\"m3s-13\"],\"dynamic-content\":[]},\"el:e30\":{\"text-headline\":[\"m3s-u\",\"m3s-v\",\"m3s-w\",\"m3s-10\",\"m3s-12\",\"m3s-13\"],\"dynamic-content\":[]},\"el:e34\":{\"text-headline\":[\"m3s-u\",\"m3s-v\",\"m3s-w\",\"m3s-10\",\"m3s-12\",\"m3s-13\"],\"dynamic-content\":[]},\"el:e8\":{\"text-headline\":[\"m3s-v\",\"m3s-w\",\"m3s-z\",\"m3s-10\"],\"dynamic-content\":[]},\"el:e10\":{\"image\":[\"m3s-14\",\"m3s-15\"],\"dynamic-content\":[]},\"el:e45\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e47\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e49\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e51\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e60\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e62\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e64\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e66\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e70\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e72\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e74\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e76\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e85\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e87\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e89\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e91\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e95\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e97\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e99\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e101\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e110\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e112\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e114\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e116\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e125\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e127\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e129\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e131\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e135\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e137\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e139\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e141\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e145\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e147\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e149\":{\"image\":[\"m3s-14\",\"m3s-16\",\"m3s-17\"],\"dynamic-content\":[]},\"el:e151\":{\"image\":[\"m3s-14\",\"m3s-16\"],\"dynamic-content\":[]},\"el:e13\":{\"counter\":[\"m3s-18\"],\"dynamic-content\":[]},\"el:e15\":{\"counter\":[\"m3s-18\"],\"dynamic-content\":[]},\"el:e17\":{\"counter\":[\"m3s-18\"],\"dynamic-content\":[]},\"el:e27\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e28\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e31\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e32\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e35\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e36\":{\"text-standard\":[\"m3s-1a\",\"m3s-1b\",\"m3s-1c\"],\"dynamic-content\":[]},\"el:e40\":{\"text-standard\":[\"m3s-1b\",\"m3s-1d\",\"m3s-1e\"],\"dynamic-content\":[]},\"el:e55\":{\"text-standard\":[\"m3s-1b\",\"m3s-1d\",\"m3s-1e\"],\"dynamic-content\":[]},\"el:e80\":{\"text-standard\":[\"m3s-1b\",\"m3s-1d\",\"m3s-1e\"],\"dynamic-content\":[]},\"el:e105\":{\"text-standard\":[\"m3s-1b\",\"m3s-1d\",\"m3s-1e\"],\"dynamic-content\":[]},\"el:e120\":{\"text-standard\":[\"m3s-1b\",\"m3s-1c\",\"m3s-1d\",\"m3s-1f\"],\"dynamic-content\":[]},\"el:e38\":{\"layout-row\":[\"m3s-1g\"],\"layout-row-columns\":[\"m3s-1h\",\"m3s-1i\"],\"dynamic-content\":[]},\"el:e53\":{\"layout-row\":[\"m3s-1g\"],\"layout-row-columns\":[\"m3s-1h\",\"m3s-1j\"],\"dynamic-content\":[]},\"el:e78\":{\"layout-row\":[\"m3s-1g\"],\"layout-row-columns\":[\"m3s-1h\",\"m3s-1k\"],\"dynamic-content\":[]},\"el:e103\":{\"layout-row\":[\"m3s-1g\"],\"layout-row-columns\":[\"m3s-1h\",\"m3s-1l\"],\"dynamic-content\":[]},\"el:e118\":{\"layout-row\":[\"m3s-1g\"],\"layout-row-columns\":[\"m3s-1h\",\"m3s-1m\"],\"dynamic-content\":[]},\"el:e39\":{\"layout-column\":[\"m3s-1n\"],\"dynamic-content\":[]},\"el:e54\":{\"layout-column\":[\"m3s-1n\"],\"dynamic-content\":[]},\"el:e79\":{\"layout-column\":[\"m3s-1n\"],\"dynamic-content\":[]},\"el:e104\":{\"layout-column\":[\"m3s-1n\"],\"dynamic-content\":[]},\"el:e119\":{\"layout-column\":[\"m3s-1n\"],\"dynamic-content\":[]},\"el:e42\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e57\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e67\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e82\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e92\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e107\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e122\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e132\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e142\":{\"layout-div\":[\"m3s-1o\"],\"dynamic-content\":[]},\"el:e43\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1r\",\"m3s-1s\"],\"dynamic-content\":[]},\"el:e58\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1r\",\"m3s-1s\"],\"dynamic-content\":[]},\"el:e68\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1t\",\"m3s-1u\",\"m3s-1v\"],\"dynamic-content\":[]},\"el:e83\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1t\",\"m3s-1u\",\"m3s-1v\"],\"dynamic-content\":[]},\"el:e93\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1t\",\"m3s-1u\",\"m3s-1v\"],\"dynamic-content\":[]},\"el:e108\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1q\",\"m3s-1t\",\"m3s-1u\",\"m3s-1v\"],\"dynamic-content\":[]},\"el:e123\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1t\",\"m3s-1u\",\"m3s-1w\",\"m3s-1x\"],\"dynamic-content\":[]},\"el:e133\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1t\",\"m3s-1u\",\"m3s-1w\",\"m3s-1x\"],\"dynamic-content\":[]},\"el:e143\":{\"layout-grid\":[\"m3s-1p\",\"m3s-1s\",\"m3s-1t\",\"m3s-1w\"],\"dynamic-content\":[]},\"el:e44\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e50\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e59\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e65\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e69\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e75\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e84\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e90\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e94\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e100\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e109\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e115\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e124\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e130\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e134\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e140\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e144\":{\"layout-cell\":[\"m3s-1y\",\"m3s-1z\",\"m3s-20\",\"m3s-21\"],\"dynamic-content\":[]},\"el:e150\":{\"layout-cell\":[\"m3s-1y\",\"m3s-21\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e46\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e61\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e71\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e86\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e96\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e111\":{\"layout-cell\":[\"m3s-1z\",\"m3s-20\",\"m3s-21\",\"m3s-22\"],\"dynamic-content\":[]},\"el:e126\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e136\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e146\":{\"layout-cell\":[\"m3s-1z\",\"m3s-21\",\"m3s-22\",\"m3s-23\"],\"dynamic-content\":[]},\"el:e48\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e63\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e73\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e88\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e98\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e113\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-25\",\"m3s-26\"],\"dynamic-content\":[]},\"el:e128\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e138\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e148\":{\"layout-cell\":[\"m3s-21\",\"m3s-22\",\"m3s-24\",\"m3s-25\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m3s-0.x-section{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;} .m3s-1.x-section{border-top-width:1px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;border-top-style:solid;border-right-style:none;border-bottom-style:solid;border-left-style:none;border-top-color:rgba(0,0,0,0.1);border-right-color:transparent;border-bottom-color:hsla(0,0%,0%,0.1);border-left-color:transparent;text-align:center;} .m3s-2.x-section{padding-right:0px;padding-left:0px;} .m3s-3.x-section{padding-top:45px;padding-bottom:45px;} .m3s-4.x-section{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m3s-5.x-section{z-index:1;} .m3s-6.x-section{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m3s-7.x-section{padding-top:65px;padding-bottom:65px;background-color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3s-8.x-section{padding-top:20px;padding-bottom:20px;background-color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3s-9.x-section{padding-top:0px;} .m3s-a.x-section{padding-bottom:0px;} .m3s-b.x-section{background-color:hsl(0, 0%, 100%);} .m3s-c.x-section{margin-top:4em;margin-right:0em;margin-bottom:4em;margin-left:0;} .m3s-d.x-section{z-index:auto;} .m3s-e.x-section{background-color:#ffffff;} .m3s-f.x-section{padding-top:0em;padding-bottom:0.5em;} .m3s-g.x-section{padding-bottom:4px;} .m3s-h.x-section{margin-top:10em;margin-right:10em;margin-bottom:10em;margin-left:calc(10%);background-color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m3s-i{transition-timing-function:ease-in;} .m3s-i .x-anchor-text-primary {transition-timing-function:ease-in;} .m3s-i .x-anchor-text-secondary {transition-timing-function:ease-in;} .m3s-i .x-graphic-child {transition-timing-function:ease-in;} :where(body:not(.tco-disable-effects)) .m3s-i:hover,:where(body:not(.tco-disable-effects)) [data-x-effect-provider*=\\\"effects\\\"]:hover .m3s-i{opacity:1;} .m3s-j{transform:scale(1);} .m3s-k.x-container{margin-top:0em;margin-bottom:0em;} .m3s-l.x-container{margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;box-shadow:none;z-index:1;} .m3s-m.x-container{margin-top:0px;margin-bottom:0px;} .m3s-n.x-column{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;box-shadow:none;z-index:1;} .m3s-p.x-column{text-align:center;} .m3s-q.x-column{padding-top:calc(2vw + 25px);padding-right:calc(2vw + 25px);padding-bottom:calc(2vw + 25px);padding-left:calc(2vw + 25px);} .m3s-r.x-column{background-color:%%post tss-color%%global-color:secondary%%\\/post%%;} .m3s-s.x-column{background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;} .m3s-t.x-column{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m3s-u.x-text{margin-top:0em;margin-bottom:0em;font-size:1em;} .m3s-v.x-text{margin-right:auto;margin-left:auto;} .m3s-v.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|700%%\\/post%%;text-transform:none;} .m3s-w.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m3s-w.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;} .m3s-x.x-text .x-text-content-text-primary{font-size:calc(1vw + 18px);letter-spacing:-0.025em;margin-right:calc(-0.025em * -1);} .m3s-y.x-text .x-text-content-text-primary{line-height:1.25;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3s-y.x-text .x-text-typing{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3s-y.x-text .x-typed-cursor{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3s-z.x-text{max-width:12em;margin-top:0px;margin-bottom:40px;font-size:calc(1.5vw + 32px);} .m3s-z.x-text .x-text-content-text-primary{font-size:1em;line-height:1.05;text-align:center;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3s-z.x-text .x-text-content-text-subheadline{margin-top:0.5em;font-family:inherit;font-size:0.385em;font-style:italic;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.55;letter-spacing:0em;text-align:center;text-transform:none;color:#000000;} .m3s-10.x-text .x-text-content-text-primary{letter-spacing:-0.015em;margin-right:calc(-0.015em * -1);} .m3s-11.x-text{font-size:1.1em;} .m3s-11.x-text .x-text-content-text{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;} .m3s-11.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|100%%\\/post%%;line-height:1.4;text-transform:capitalize;} .m3s-12.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3s-13.x-text{max-width:24rem;} .m3s-13.x-text .x-text-content-text-primary{font-size:calc(1.25vw + 21px);line-height:1;} .m3s-14.x-image{font-size:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m3s-15.x-image{padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;background-color:hsla(0, 0%, 100%, 0);} .m3s-16.x-image{display:block;width:100%;} .m3s-16.x-image img{width:100%;object-fit:cover;} .m3s-16.x-image,.m3s-16.x-image img{height:100%;} .m3s-17.x-image{background-color:#e3f0fc;} .m3s-18.x-counter{margin-top:40px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:1em;} .m3s-18 .x-counter-number-wrap{margin-top:0em;margin-right:calc(-0.015em * -1);margin-bottom:0.15em;margin-left:0px;font-family:inherit;font-size:3em;font-style:normal;font-weight:%%post tss-fw%%inherit|700%%\\/post%%;line-height:1;letter-spacing:-0.015em;text-align:center;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3s-18 .x-counter-after,.m3s-18 .x-counter-before{font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1;letter-spacing:0.25em;margin-right:calc(0.25em * -1);text-align:center;text-transform:uppercase;color:#888888;} .m3s-19.x-anchor {margin-top:1.191em;margin-right:0em;margin-bottom:1.191em;margin-left:0em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-left-radius:0.35em;border-top-right-radius:0.35em;border-bottom-right-radius:0.35em;border-bottom-left-radius:0.35em;font-size:1.4em;background-color:%%post tss-color%%global-color:primary%%\\/post%%;box-shadow:0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);} .m3s-19.x-anchor .x-anchor-content {display:flex;flex-direction:row;justify-content:center;align-items:center;padding-top:0.575em;padding-right:0.85em;padding-bottom:0.575em;padding-left:0.85em;} .m3s-19.x-anchor .x-anchor-text {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m3s-19.x-anchor .x-anchor-text-primary {font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|fw-bold%%\\/post%%;line-height:1;text-transform:uppercase;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3s-19.x-anchor:hover .x-anchor-text-primary,.m3s-19.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m3s-19.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3s-1a.x-text{max-width:24rem;margin-top:1em;margin-right:auto;margin-bottom:0em;margin-left:auto;font-size:1em;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.6;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3s-1b.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-style:normal;letter-spacing:0em;} .m3s-1b.x-text > :first-child{margin-top:0;} .m3s-1b.x-text > :last-child{margin-bottom:0;} .m3s-1c.x-text{font-family:inherit;text-transform:none;} .m3s-1d.x-text{font-weight:inherit;line-height:calc(100vw - 92vw);} .m3s-1e.x-text{font-family:%%post tss-ff%%system:geneva%%\\/post%%;font-size:calc(2rem + 3.5vw);text-align:center;text-transform:uppercase;color:%%post tss-color%%global-color:primary%%\\/post%%;background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m3s-1f.x-text{font-size:calc(100vw - 92vw);color:rgba(0, 0, 0, 1);background-color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m3s-1g.x-row{z-index:auto;margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;font-size:1em;} .m3s-1g > .x-row-inner{flex-direction:row;justify-content:flex-start;align-items:stretch;align-content:stretch;margin-top:calc(((0px \\/ 2) + 1px) * -1);margin-right:calc(((0px \\/ 2) + 1px) * -1);margin-bottom:calc(((0px \\/ 2) + 1px) * -1);margin-left:calc(((0px \\/ 2) + 1px) * -1);} .m3s-1h{--gap:0px;} .m3s-1i > .x-row-inner > *:nth-child(1n - 0) \\/** 67460733c9096 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m3s-1j > .x-row-inner > *:nth-child(1n - 0) \\/** 674607340322f *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m3s-1k > .x-row-inner > *:nth-child(1n - 0) \\/** 674607344a324 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m3s-1l > .x-row-inner > *:nth-child(1n - 0) \\/** 6746073494522 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m3s-1m > .x-row-inner > *:nth-child(1n - 0) \\/** 67460734bf6c7 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m3s-1n.x-col{z-index:1;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m3s-1o{flex-grow:0;flex-shrink:1;flex-basis:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m3s-1p.x-grid{overflow-x:hidden;overflow-y:hidden;justify-content:stretch;align-content:stretch;justify-items:stretch;align-items:stretch;z-index:auto;width:100%;max-width:100%;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(3, clamp(150px, 27vmin, 200px));} .m3s-1q.x-grid{grid-gap:0.5em 0.5em;} .m3s-1r.x-grid{margin-top:0px;margin-right:0;margin-bottom:0.5em;margin-left:0;} .m3s-1u.x-grid{padding-top:0px;padding-right:0px;padding-left:0px;} .m3s-1v.x-grid{padding-bottom:0.5em;} .m3s-1w.x-grid{grid-gap:4px 4px;} .m3s-1x.x-grid{padding-bottom:4px;} .m3s-1y.x-cell{grid-column-start:1;grid-column-end:2;} .m3s-1z.x-cell{grid-row-start:1;} .m3s-20.x-cell{grid-row-end:3;} .m3s-21.x-cell{justify-self:auto;align-self:auto;overflow-x:hidden;overflow-y:hidden;z-index:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;font-size:1em;background-color:#e3f0fc;} .m3s-22.x-cell{grid-column-start:2;grid-column-end:3;} .m3s-23.x-cell{grid-row-end:2;} .m3s-24.x-cell{grid-row-start:2;} .m3s-25.x-cell{grid-row-end:4;} .m3s-26.x-cell{grid-row-start:3;}\",\"element_css\":\"                                                                                                                                                      \"}}'),
(1307,49,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"section\":[\"m1d-0\"],\"dynamic-content\":[]},\"el:e2\":{\"layout-row\":[\"m1d-1\"],\"layout-row-columns\":[\"m1d-2\"],\"dynamic-content\":[]},\"el:e3\":{\"layout-column\":[\"m1d-3\"],\"dynamic-content\":[]},\"el:e7\":{\"layout-column\":[\"m1d-3\"],\"dynamic-content\":[]},\"el:e4\":{\"text-headline\":[\"m1d-4\"],\"dynamic-content\":[]},\"el:e5\":{\"text-standard\":[\"m1d-5\"],\"dynamic-content\":[]},\"el:e6\":{\"form-integration\":[\"m1d-6\"],\"dynamic-content\":[]},\"el:e8\":{\"frame\":[\"m1d-7\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m1d-0.x-section{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:65px;padding-right:0px;padding-bottom:65px;padding-left:0px;background-color:rgb(255, 255, 255);z-index:auto;} .m1d-1.x-row{z-index:auto;margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;font-size:1em;} .m1d-1 > .x-row-inner{flex-direction:row;justify-content:flex-start;align-items:stretch;align-content:stretch;margin-top:calc(((20px \\/ 2) + 1px) * -1);margin-right:calc(((20px \\/ 2) + 1px) * -1);margin-bottom:calc(((20px \\/ 2) + 1px) * -1);margin-left:calc(((20px \\/ 2) + 1px) * -1);} .m1d-1 > .x-row-inner > *{margin-top:calc(20px \\/ 2);margin-bottom:calc(20px \\/ 2);margin-right:calc(20px \\/ 2);margin-left:calc(20px \\/ 2);} .m1d-2{--gap:20px;} .m1d-2 > .x-row-inner > *:nth-child(2n - 0) \\/** 6746130c6bec8 *\\/{flex-basis:calc(50% - clamp(0px, var(--gap), 9999px));} .m1d-2 > .x-row-inner > *:nth-child(2n - 1) \\/** 6746130c6bec8 *\\/{flex-basis:calc(50% - clamp(0px, var(--gap), 9999px));} .m1d-3.x-col{z-index:1;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m1d-4.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m1d-4.x-text .x-text-content-text{margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;} .m1d-4.x-text .x-text-content-text-primary{font-family:inherit;font-size:2.1em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.2;letter-spacing:0em;text-transform:none;color:%%post tss-color%%global-color:4272616e64205072696d617279%%\\/post%%;} .m1d-5.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:0em;padding-right:0em;padding-bottom:1em;padding-left:0em;font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.6;letter-spacing:0em;text-transform:none;color:%%post tss-color%%global-color:4272616e64205072696d617279%%\\/post%%;} .m1d-5.x-text > :first-child{margin-top:0;} .m1d-5.x-text > :last-child{margin-bottom:0;} .m1d-7.x-frame{width:100%;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:16px;background-color:#ffffff;} .m1d-7 .x-frame-inner{padding-bottom:450px;}@media screen and (max-width: 479px){ .m1d-2 > .x-row-inner > *:nth-child(1n - 0) \\/** 6746130c6bfe9 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));}}\",\"element_css\":\"       .e49-e8 {\\n  overflow: hidden;\\n}\"}}'),
(1311,380,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"section\":[\"mak-0\"],\"dynamic-content\":[]},\"el:e2\":{\"classic-row-v2\":[\"mak-1\",\"mak-2\"],\"dynamic-content\":[]},\"el:e6\":{\"classic-row-v2\":[\"mak-2\",\"mak-3\"],\"dynamic-content\":[]},\"el:e15\":{\"classic-row-v2\":[\"mak-2\",\"mak-3\"],\"dynamic-content\":[]},\"el:e3\":{\"classic-column-v2\":[\"mak-4\"],\"dynamic-content\":[]},\"el:e7\":{\"classic-column-v2\":[\"mak-4\"],\"dynamic-content\":[]},\"el:e11\":{\"classic-column-v2\":[\"mak-4\"],\"dynamic-content\":[]},\"el:e16\":{\"classic-column-v2\":[\"mak-4\"],\"dynamic-content\":[]},\"el:e20\":{\"classic-column-v2\":[\"mak-4\"],\"dynamic-content\":[]},\"el:e4\":{\"text-headline\":[\"mak-5\",\"mak-6\",\"mak-7\",\"mak-8\"],\"dynamic-content\":[]},\"el:e5\":{\"text-headline\":[\"mak-5\",\"mak-7\",\"mak-9\",\"mak-a\"],\"dynamic-content\":[]},\"el:e8\":{\"text-headline\":[\"mak-7\",\"mak-8\",\"mak-a\",\"mak-b\"],\"dynamic-content\":[]},\"el:e12\":{\"text-headline\":[\"mak-7\",\"mak-8\",\"mak-a\",\"mak-b\"],\"dynamic-content\":[]},\"el:e17\":{\"text-headline\":[\"mak-7\",\"mak-8\",\"mak-a\",\"mak-b\"],\"dynamic-content\":[]},\"el:e21\":{\"text-headline\":[\"mak-7\",\"mak-8\",\"mak-a\",\"mak-b\"],\"dynamic-content\":[]},\"el:e9\":{\"text-standard\":[\"mak-c\"],\"dynamic-content\":[]},\"el:e13\":{\"text-standard\":[\"mak-c\"],\"dynamic-content\":[]},\"el:e18\":{\"text-standard\":[\"mak-c\"],\"dynamic-content\":[]},\"el:e22\":{\"text-standard\":[\"mak-c\"],\"dynamic-content\":[]},\"el:e10\":{\"gap\":[\"mak-d\"],\"dynamic-content\":[]},\"el:e14\":{\"gap\":[\"mak-d\"],\"dynamic-content\":[]},\"el:e19\":{\"gap\":[\"mak-d\"],\"dynamic-content\":[]},\"el:e23\":{\"gap\":[\"mak-d\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .mak-0.x-section{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:75px;padding-right:0px;padding-bottom:75px;padding-left:0px;background-color:hsl(0, 0%, 100%);z-index:1;} .mak-1.x-container{margin-top:0em;margin-bottom:0em;} .mak-2.x-container{margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;box-shadow:none;z-index:1;} .mak-3.x-container{margin-top:35px;margin-bottom:0px;} .mak-4.x-column{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;box-shadow:none;z-index:1;} .mak-5.x-text{margin-top:0em;margin-right:0em;margin-left:0em;} .mak-5.x-text .x-text-content-text-primary{text-transform:none;} .mak-6.x-text{margin-bottom:1em;font-size:calc(3.5vw + 32px);} .mak-6.x-text .x-text-content-text-primary{font-size:1em;line-height:1.05;letter-spacing:-0.015em;margin-right:calc(-0.015em * -1);} .mak-7.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .mak-7.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;} .mak-8.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|400%%\\/post%%;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .mak-9.x-text{margin-bottom:4em;} .mak-9.x-text .x-text-content-text-primary{font-size:2em;font-weight:inherit;letter-spacing:0em;color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .mak-a.x-text{font-size:1em;} .mak-a.x-text .x-text-content-text-primary{line-height:1.4;} .mak-b.x-text .x-text-content{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;} .mak-b.x-text .x-text-content-text{margin-top:0.75em;margin-right:0em;margin-bottom:0.75em;margin-left:0em;} .mak-b.x-text .x-text-content-text-primary{font-size:1.25em;letter-spacing:0.15em;margin-right:calc(0.15em * -1);text-transform:uppercase;} .mak-b.x-text .x-graphic-icon {font-size:6em;width:1em;color:%%post tss-color%%global-color:primary%%\\/post%%;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;height:1em;line-height:1em;} .mak-c.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-family:inherit;font-size:1.2em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.7;letter-spacing:0em;text-transform:none;color:#888888;} .mak-c.x-text > :first-child{margin-top:0;} .mak-c.x-text > :last-child{margin-bottom:0;} .mak-d{padding-top:6em;padding-right:0;padding-bottom:0;padding-left:0;font-size:1em;}\",\"element_css\":\"                      \"}}');
INSERT INTO `wp_postmeta` VALUES
(1312,133,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"section\":[\"m3p-0\",\"m3p-1\",\"m3p-2\",\"m3p-3\"],\"dynamic-content\":[]},\"el:e5\":{\"section\":[\"m3p-0\",\"m3p-4\",\"m3p-5\"],\"dynamic-content\":[]},\"el:e18\":{\"section\":[\"m3p-0\",\"m3p-1\",\"m3p-6\"],\"dynamic-content\":[]},\"el:e23\":{\"section\":[\"m3p-0\",\"m3p-4\",\"m3p-7\",\"m3p-8\"],\"dynamic-content\":[]},\"el:e31\":{\"section\":[\"m3p-0\",\"m3p-4\",\"m3p-7\",\"m3p-9\"],\"dynamic-content\":[]},\"el:e39\":{\"section\":[\"m3p-0\",\"m3p-4\",\"m3p-7\",\"m3p-a\"],\"dynamic-content\":[]},\"el:e47\":{\"section\":[\"m3p-0\",\"m3p-3\",\"m3p-4\",\"m3p-7\"],\"dynamic-content\":[]},\"el:e55\":{\"section\":[\"m3p-0\",\"m3p-4\",\"m3p-b\"],\"dynamic-content\":[]},\"el:e21\":{\"effects\":[\"m3p-c\"],\"anchor\":[\"m3p-1c\"],\"dynamic-content\":[]},\"el:e22\":{\"effects\":[\"m3p-d\"],\"text-headline\":[\"m3p-r\",\"m3p-s\",\"m3p-u\",\"m3p-x\",\"m3p-13\",\"m3p-14\",\"m3p-15\",\"m3p-16\"],\"dynamic-content\":[]},\"el:e2\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e6\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e11\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e19\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e24\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e32\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e40\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e48\":{\"classic-row-v2\":[\"m3p-e\",\"m3p-f\"],\"dynamic-content\":[]},\"el:e56\":{\"classic-row-v2\":[\"m3p-f\",\"m3p-g\"],\"dynamic-content\":[]},\"el:e3\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e7\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e9\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\",\"m3p-j\"],\"dynamic-content\":[]},\"el:e12\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e14\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e16\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e20\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e25\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e28\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e33\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e36\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e41\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e44\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e49\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e52\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-i\"],\"dynamic-content\":[]},\"el:e57\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-k\",\"m3p-l\"],\"dynamic-content\":[]},\"el:e61\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-k\",\"m3p-m\"],\"dynamic-content\":[]},\"el:e65\":{\"classic-column-v2\":[\"m3p-h\",\"m3p-k\",\"m3p-n\"],\"dynamic-content\":[]},\"el:e4\":{\"text-headline\":[\"m3p-o\",\"m3p-p\",\"m3p-q\",\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-u\",\"m3p-v\",\"m3p-w\",\"m3p-x\"],\"dynamic-content\":[]},\"el:e29\":{\"text-headline\":[\"m3p-o\",\"m3p-s\",\"m3p-t\",\"m3p-z\",\"m3p-12\",\"m3p-15\",\"m3p-18\"],\"dynamic-content\":[]},\"el:e37\":{\"text-headline\":[\"m3p-o\",\"m3p-s\",\"m3p-t\",\"m3p-z\",\"m3p-12\",\"m3p-15\",\"m3p-18\"],\"dynamic-content\":[]},\"el:e45\":{\"text-headline\":[\"m3p-o\",\"m3p-s\",\"m3p-t\",\"m3p-z\",\"m3p-12\",\"m3p-15\",\"m3p-18\"],\"dynamic-content\":[]},\"el:e53\":{\"text-headline\":[\"m3p-o\",\"m3p-s\",\"m3p-t\",\"m3p-z\",\"m3p-12\",\"m3p-15\",\"m3p-18\"],\"dynamic-content\":[]},\"el:e58\":{\"text-headline\":[\"m3p-o\",\"m3p-p\",\"m3p-q\",\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-11\",\"m3p-16\",\"m3p-19\"],\"dynamic-content\":[]},\"el:e62\":{\"text-headline\":[\"m3p-o\",\"m3p-p\",\"m3p-q\",\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-11\",\"m3p-16\",\"m3p-19\"],\"dynamic-content\":[]},\"el:e66\":{\"text-headline\":[\"m3p-o\",\"m3p-p\",\"m3p-q\",\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-11\",\"m3p-16\",\"m3p-19\"],\"dynamic-content\":[]},\"el:e8\":{\"text-headline\":[\"m3p-p\",\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-y\",\"m3p-z\",\"m3p-10\",\"m3p-11\",\"m3p-12\"],\"dynamic-content\":[]},\"el:e26\":{\"text-headline\":[\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-x\",\"m3p-z\",\"m3p-10\",\"m3p-13\",\"m3p-16\",\"m3p-17\"],\"dynamic-content\":[]},\"el:e34\":{\"text-headline\":[\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-x\",\"m3p-z\",\"m3p-10\",\"m3p-13\",\"m3p-16\",\"m3p-17\"],\"dynamic-content\":[]},\"el:e42\":{\"text-headline\":[\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-x\",\"m3p-z\",\"m3p-10\",\"m3p-13\",\"m3p-16\",\"m3p-17\"],\"dynamic-content\":[]},\"el:e50\":{\"text-headline\":[\"m3p-r\",\"m3p-s\",\"m3p-t\",\"m3p-v\",\"m3p-x\",\"m3p-z\",\"m3p-10\",\"m3p-13\",\"m3p-16\",\"m3p-17\"],\"dynamic-content\":[]},\"el:e10\":{\"image\":[\"m3p-1a\"],\"dynamic-content\":[]},\"el:e13\":{\"counter\":[\"m3p-1b\"],\"dynamic-content\":[]},\"el:e15\":{\"counter\":[\"m3p-1b\"],\"dynamic-content\":[]},\"el:e17\":{\"counter\":[\"m3p-1b\"],\"dynamic-content\":[]},\"el:e27\":{\"text-standard\":[\"m3p-1d\",\"m3p-1e\",\"m3p-1f\"],\"dynamic-content\":[]},\"el:e35\":{\"text-standard\":[\"m3p-1d\",\"m3p-1e\",\"m3p-1i\"],\"dynamic-content\":[]},\"el:e43\":{\"text-standard\":[\"m3p-1d\",\"m3p-1e\",\"m3p-1i\"],\"dynamic-content\":[]},\"el:e51\":{\"text-standard\":[\"m3p-1d\",\"m3p-1e\",\"m3p-1i\"],\"dynamic-content\":[]},\"el:e30\":{\"text-standard\":[\"m3p-1e\",\"m3p-1f\",\"m3p-1g\",\"m3p-1h\"],\"dynamic-content\":[]},\"el:e38\":{\"text-standard\":[\"m3p-1e\",\"m3p-1f\",\"m3p-1g\",\"m3p-1h\"],\"dynamic-content\":[]},\"el:e46\":{\"text-standard\":[\"m3p-1e\",\"m3p-1g\",\"m3p-1h\",\"m3p-1i\"],\"dynamic-content\":[]},\"el:e54\":{\"text-standard\":[\"m3p-1e\",\"m3p-1g\",\"m3p-1h\",\"m3p-1i\"],\"dynamic-content\":[]},\"el:e59\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e60\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e63\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e64\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e67\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e68\":{\"text-standard\":[\"m3p-1e\",\"m3p-1h\",\"m3p-1j\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m3p-0.x-section{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-right:0px;padding-left:0px;z-index:1;} .m3p-1.x-section{border-top-width:1px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;border-top-style:solid;border-right-style:none;border-bottom-style:solid;border-left-style:none;border-top-color:rgba(0,0,0,0.1);border-right-color:transparent;border-bottom-color:hsla(0,0%,0%,0.1);border-left-color:transparent;text-align:center;} .m3p-2.x-section{padding-top:45px;padding-bottom:45px;} .m3p-3.x-section{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m3p-4.x-section{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m3p-5.x-section{padding-top:65px;padding-bottom:65px;background-color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3p-6.x-section{padding-top:20px;padding-bottom:20px;background-color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3p-7.x-section{padding-top:75px;padding-bottom:75px;} .m3p-8.x-section{background-color:%%post tss-color%%global-color:secondary%%\\/post%%;} .m3p-9.x-section{background-color:%%post tss-color%%global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14%%\\/post%%;} .m3p-a.x-section{background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;} .m3p-b.x-section{padding-top:0px;padding-bottom:0px;background-color:hsl(0, 0%, 100%);} .m3p-c{transition-timing-function:ease-in;} .m3p-c .x-anchor-text-primary {transition-timing-function:ease-in;} .m3p-c .x-anchor-text-secondary {transition-timing-function:ease-in;} .m3p-c .x-graphic-child {transition-timing-function:ease-in;} :where(body:not(.tco-disable-effects)) .m3p-c:hover,:where(body:not(.tco-disable-effects)) [data-x-effect-provider*=\\\"effects\\\"]:hover .m3p-c{opacity:1;} .m3p-d{transform:scale(1);} .m3p-e.x-container{margin-top:0em;margin-bottom:0em;} .m3p-f.x-container{margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;box-shadow:none;z-index:1;} .m3p-g.x-container{margin-top:0px;margin-bottom:0px;} .m3p-h.x-column{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;box-shadow:none;z-index:1;} .m3p-j.x-column{text-align:center;} .m3p-k.x-column{padding-top:calc(2vw + 25px);padding-right:calc(2vw + 25px);padding-bottom:calc(2vw + 25px);padding-left:calc(2vw + 25px);} .m3p-l.x-column{background-color:%%post tss-color%%global-color:secondary%%\\/post%%;} .m3p-m.x-column{background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;} .m3p-n.x-column{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m3p-o.x-text{margin-top:0em;font-size:1em;} .m3p-p.x-text{margin-right:auto;margin-left:auto;} .m3p-q.x-text{margin-bottom:0em;} .m3p-r.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m3p-s.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;} .m3p-u.x-text .x-text-content-text-primary{font-size:calc(1vw + 18px);} .m3p-v.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|700%%\\/post%%;text-transform:none;} .m3p-w.x-text .x-text-content-text-primary{line-height:1.25;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3p-w.x-text .x-text-typing{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3p-w.x-text .x-typed-cursor{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3p-x.x-text .x-text-content-text-primary{letter-spacing:-0.025em;margin-right:calc(-0.025em * -1);} .m3p-y.x-text{max-width:12em;margin-top:0px;margin-bottom:40px;font-size:calc(1.5vw + 32px);} .m3p-y.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3p-y.x-text .x-text-content-text-subheadline{margin-top:0.5em;font-family:inherit;font-size:0.385em;font-style:italic;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.55;letter-spacing:0em;text-align:left;text-transform:none;color:#000000;} .m3p-z.x-text .x-text-content-text-primary{font-size:1em;} .m3p-10.x-text .x-text-content-text-primary{line-height:1.05;} .m3p-11.x-text .x-text-content-text-primary{letter-spacing:-0.015em;margin-right:calc(-0.015em * -1);} .m3p-12.x-text .x-text-content-text-primary{text-align:left;} .m3p-14.x-text{font-size:1.1em;} .m3p-14.x-text .x-text-content-text{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;} .m3p-14.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|100%%\\/post%%;text-transform:capitalize;} .m3p-15.x-text .x-text-content-text-primary{line-height:1.4;} .m3p-16.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m3p-17.x-text{font-size:calc(2vw + 32px);} .m3p-18.x-text{margin-right:0em;margin-bottom:1.25em;margin-left:0em;border-top-width:0px;border-right-width:0px;border-bottom-width:2px;border-left-width:0px;border-top-style:none;border-right-style:none;border-bottom-style:solid;border-left-style:none;border-top-color:transparent;border-right-color:transparent;border-bottom-color:rgba(255,255,255,0.25);border-left-color:transparent;padding-top:0em;padding-right:0em;padding-bottom:1em;padding-left:0em;} .m3p-18.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|400%%\\/post%%;letter-spacing:0.15em;margin-right:calc(0.15em * -1);text-transform:uppercase;color:white;} .m3p-19.x-text{max-width:24rem;} .m3p-19.x-text .x-text-content-text-primary{font-size:calc(1.25vw + 21px);line-height:1;} .m3p-1a.x-image{font-size:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;background-color:hsla(0, 0%, 100%, 0);} .m3p-1b.x-counter{margin-top:40px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:1em;} .m3p-1b .x-counter-number-wrap{margin-top:0em;margin-right:calc(-0.015em * -1);margin-bottom:0.15em;margin-left:0px;font-family:inherit;font-size:3em;font-style:normal;font-weight:%%post tss-fw%%inherit|700%%\\/post%%;line-height:1;letter-spacing:-0.015em;text-align:center;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3p-1b .x-counter-after,.m3p-1b .x-counter-before{font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1;letter-spacing:0.25em;margin-right:calc(0.25em * -1);text-align:center;text-transform:uppercase;color:#888888;} .m3p-1c.x-anchor {margin-top:1.191em;margin-right:0em;margin-bottom:1.191em;margin-left:0em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-left-radius:0.35em;border-top-right-radius:0.35em;border-bottom-right-radius:0.35em;border-bottom-left-radius:0.35em;font-size:1.4em;background-color:%%post tss-color%%global-color:primary%%\\/post%%;box-shadow:0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);} .m3p-1c.x-anchor .x-anchor-content {display:flex;flex-direction:row;justify-content:center;align-items:center;padding-top:0.575em;padding-right:0.85em;padding-bottom:0.575em;padding-left:0.85em;} .m3p-1c.x-anchor .x-anchor-text {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m3p-1c.x-anchor .x-anchor-text-primary {font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|fw-bold%%\\/post%%;line-height:1;text-transform:uppercase;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m3p-1c.x-anchor:hover .x-anchor-text-primary,.m3p-1c.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m3p-1c.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m3p-1d.x-text{margin-top:0.75em;margin-right:0em;margin-bottom:1.5em;margin-left:0em;font-size:calc(0.5vw + 16px);} .m3p-1e.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-family:inherit;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.6;letter-spacing:0em;text-transform:none;} .m3p-1e.x-text > :first-child{margin-top:0;} .m3p-1e.x-text > :last-child{margin-bottom:0;} .m3p-1f.x-text{color:rgba(255, 255, 255, 0.68);} .m3p-1g.x-text{columns:210px 2;column-gap:1.5em;column-rule:0px none transparent;} .m3p-1g.x-text > *{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid;} .m3p-1h.x-text{font-size:1em;} .m3p-1i.x-text{color:rgba(255, 255, 255, 0.4);} .m3p-1j.x-text{max-width:24rem;margin-top:1em;margin-right:auto;margin-bottom:0em;margin-left:auto;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;}\",\"element_css\":\"                                                                   \"}}'),
(1313,395,'_cs_template_identifier','element|__multi__'),
(1314,395,'_cs_template_data','{\"elements\":[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]}'),
(1315,396,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commericial Solutoins\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"!0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0em 0em 1em 0em\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"155:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3>Why Choose Baseline Stucco for Your Commercial Project?</h3>\\n<ul>\\n \\t<li><strong>Professional Appearance:</strong> Create an inviting, polished look for your business.</li>\\n \\t<li><strong>Durability:</strong> Long-lasting finishes that resist cracking, fading, and weather damage.</li>\\n \\t<li><strong>Energy Efficiency:</strong> Enhance insulation to reduce heating and cooling costs.</li>\\n \\t<li><strong>Low Maintenance:</strong> Save time and money with a hassle-free exterior solution.</li>\\n \\t<li><strong>Customizable Design:</strong> Wide range of colors, textures, and finishes to match your brand.</li>\\n</ul>\",\"text_margin\":\"0em 0em 4em 0em\",\"text_text_align\":\"left\",\"_modules\":[]},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Commercial Stucco Services Include:</strong></h3>\\n<ul>\\n<li>Stucco application for new commercial construction projects.</li>\\n<li>Renovations and updates to existing stucco exteriors.</li>\\n<li>EIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.</li>\\n<li>Crack repair and restoration to maintain a professional appearance.</li>\\n<li>Custom texturing and design to align with your company&rsquo;s branding.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"2em 0em 2em 0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq/Ft Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"107:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"99:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"98:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"291:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"115:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"110:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"114:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"108:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1316,396,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1317,397,'_wp_attached_file','2024/11/baselineconstruction.zip'),
(1318,397,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:15144700;}'),
(1319,398,'_wp_attached_file','2024/11/IMG_1076-scaled.jpg'),
(1320,398,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1076-scaled.jpg\";s:8:\"filesize\";i:643290;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1076-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25925;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1076-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1076-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16878;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1076-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82251;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1076-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257860;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1076-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:432286;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1076-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13933;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1076-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169203;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1076-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116124;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1076-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169203;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1076-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116124;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633957053\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"1.54\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0016891891891892\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1076.jpg\";}'),
(1321,399,'_wp_attached_file','2024/11/IMG_1071-scaled.jpg'),
(1322,399,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1071-scaled.jpg\";s:8:\"filesize\";i:618907;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1071-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26793;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1071-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1071-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18054;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1071-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83573;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1071-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252754;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1071-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:415862;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1071-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14765;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1071-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168772;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1071-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115340;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1071-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168772;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1071-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633956993\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0004750593824228\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1071.jpg\";}'),
(1323,400,'_wp_attached_file','2024/11/IMG_1106-scaled.jpg'),
(1324,400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1106-scaled.jpg\";s:8:\"filesize\";i:781505;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1106-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27537;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1106-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1106-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17937;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1106-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93298;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1106-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308161;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1106-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:521590;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1106-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14783;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1106-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199305;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1106-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144757;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1106-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199305;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1106-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144757;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634201793\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00092421441774492\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1106.jpg\";}'),
(1325,401,'_wp_attached_file','2024/11/IMG_1107-scaled.jpg'),
(1326,401,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1107-scaled.jpg\";s:8:\"filesize\";i:613011;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1107-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26300;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1107-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1107-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17354;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1107-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85748;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1107-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263118;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1107-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:423471;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1107-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14231;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1107-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176042;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1107-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127716;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1107-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176042;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1107-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634201801\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"1.54\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0020449897750511\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1107.jpg\";}'),
(1327,402,'_wp_attached_file','2024/11/IMG_1074-scaled.jpg'),
(1328,402,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1074-scaled.jpg\";s:8:\"filesize\";i:785403;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1074-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30420;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1074-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168982;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1074-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19374;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1074-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106184;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1074-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334370;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1074-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:541105;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1074-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15620;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1074-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221849;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1074-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155613;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1074-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221849;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1074-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633957011\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"1.54\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0013966480446927\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1074.jpg\";}'),
(1329,403,'_wp_attached_file','2024/11/IMG_1070-scaled.jpg'),
(1330,403,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_1070-scaled.jpg\";s:8:\"filesize\";i:691786;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1070-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26006;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1070-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1070-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1070-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90130;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1070-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:292266;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1070-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:475666;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1070-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14236;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1070-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191965;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1070-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143514;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1070-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191965;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1070-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 11 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633956971\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00045004500450045\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1070.jpg\";}'),
(1331,404,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1332,404,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1333,405,'_wp_attached_file','2024/11/E4DB0D13-22B7-4FA5-B49E-D341910DA8E3.jpg'),
(1334,405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1082;s:4:\"file\";s:48:\"2024/11/E4DB0D13-22B7-4FA5-B49E-D341910DA8E3.jpg\";s:8:\"filesize\";i:524180;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17304;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6625;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102212;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2854;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243759;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180896;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243759;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"E4DB0D13-22B7-4FA5-B49E-D341910DA8E3-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180896;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1335,406,'_wp_attached_file','2024/11/C44CAEB1-7921-46CF-AF1A-D361F7583648.jpg'),
(1336,406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1082;s:4:\"file\";s:48:\"2024/11/C44CAEB1-7921-46CF-AF1A-D361F7583648.jpg\";s:8:\"filesize\";i:423579;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15988;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89177;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2832;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206465;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152400;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206465;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"C44CAEB1-7921-46CF-AF1A-D361F7583648-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152400;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1337,407,'_wp_attached_file','2024/11/84FB92D7-8FFC-4005-AE08-52DF3B578067.jpg'),
(1338,407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1082;s:4:\"file\";s:48:\"2024/11/84FB92D7-8FFC-4005-AE08-52DF3B578067.jpg\";s:8:\"filesize\";i:372205;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16179;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6539;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83538;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2839;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186918;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132475;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186918;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"84FB92D7-8FFC-4005-AE08-52DF3B578067-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132475;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1339,408,'_wp_attached_file','2024/11/IMG_4130-scaled.jpg'),
(1340,408,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_4130-scaled.jpg\";s:8:\"filesize\";i:808285;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_4130-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24225;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_4130-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_4130-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15995;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_4130-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88343;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_4130-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:314992;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_4130-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:539147;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_4130-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13155;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_4130-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199971;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_4130-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151618;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_4130-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199971;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_4130-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151618;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 13 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1656671905\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.7\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00025201612903226\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_4130.jpg\";}'),
(1341,409,'_wp_attached_file','2024/11/D0F1472C-36EA-4508-BD49-3E62145B391D.jpg'),
(1342,409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1082;s:4:\"file\";s:48:\"2024/11/D0F1472C-36EA-4508-BD49-3E62145B391D.jpg\";s:8:\"filesize\";i:274883;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"D0F1472C-36EA-4508-BD49-3E62145B391D-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11753;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"D0F1472C-36EA-4508-BD49-3E62145B391D-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104154;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"D0F1472C-36EA-4508-BD49-3E62145B391D-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"D0F1472C-36EA-4508-BD49-3E62145B391D-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60807;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"D0F1472C-36EA-4508-BD49-3E62145B391D-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2366;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"D0F1472C-36EA-4508-BD49-3E62145B391D-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139942;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"D0F1472C-36EA-4508-BD49-3E62145B391D-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99950;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"D0F1472C-36EA-4508-BD49-3E62145B391D-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139942;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"D0F1472C-36EA-4508-BD49-3E62145B391D-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1343,410,'_wp_attached_file','2024/11/B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE.jpg'),
(1344,410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1082;s:4:\"file\";s:48:\"2024/11/B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE.jpg\";s:8:\"filesize\";i:321773;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13875;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5800;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70075;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:47:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2617;}s:5:\"entry\";a:5:{s:4:\"file\";s:49:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161095;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:49:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119137;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:49:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-1200x902.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161095;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:49:\"B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119137;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1345,411,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"148:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Five Guys &amp; Chipotle\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"406:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1346,411,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1347,412,'_wp_attached_file','2024/11/house.gif'),
(1348,412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2024/11/house.gif\";s:8:\"filesize\";i:2735007;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"house-300x200.gif\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:404;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"house-1024x683.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"house-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:257;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"house-768x512.gif\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1062;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"house-100x67.gif\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:162;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:18:\"house-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:18:\"house-1200x671.gif\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:1573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1349,413,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Health Quest Lloyd</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"406:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Hyundai Goshen</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Healey Dodge</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1350,413,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1351,414,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"406:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Lagrange Farms</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1352,414,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1353,415,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"406:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"311:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"308:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"310:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"307:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1354,415,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1355,3,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1356,3,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Privacy Policy\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">Baseline Stucco (\\\"we,\\\" \\\"our,\\\" or \\\"us\\\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website <a style=\\\"color: #ffffff;\\\" href=\\\"http://www.baselinestucco.com\\\">www.baselinestucco.com</a>&nbsp;or interact with us online or offline.</span></p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>We may collect both personal and non-personal information. Personal information includes details you provide to us, such as your name, email address, phone number, and other contact details when filling out forms, contacting us, or requesting our services. Non-personal information is collected automatically and may include your IP address, browser type, operating system, and information about your interactions with our website, such as pages visited and time spent on each page.</p>\\n<p>The information we collect is used to provide, manage, and improve our services, respond to inquiries, process service requests, send updates or promotional materials, and analyze website usage to enhance the user experience. We may also use your information to comply with legal obligations or enforce our terms and conditions.</p>\\n<p>We do not sell, rent, or share your personal information with third parties except as necessary. This includes working with trusted service providers who assist us in delivering services, complying with applicable laws, or protecting our rights and safety or those of our clients.</p>\\n<p>Cookies and similar tracking technologies are used to improve website functionality, analyze traffic, and provide tailored content and advertisements. You can disable cookies through your browser settings, but doing so may affect your website experience.</p>\\n<p>We take appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. While we strive to secure your data, no method of data transmission over the internet is entirely secure, so we encourage you to take precautions when sharing sensitive information online.</p>\\n<p>You have rights regarding your personal data, including accessing, correcting, or requesting deletion of the information we hold about you. You can also opt out of receiving marketing communications at any time. To exercise your rights, please contact us using the details provided below.</p>\\n<p>Our website may include links to third-party websites, which have their own privacy practices. We are not responsible for the content or privacy policies of these external sites and encourage you to review their policies before providing personal information.</p>\\n<p>We may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.</p>\\n<p>If you have questions, concerns, or requests related to this Privacy Policy, please contact us by email at [Insert Email Address], by phone at [Insert Phone Number], or by mail at [Insert Physical Address].</p>\\n<p>Thank you for trusting Baseline Stucco. Your privacy and security are important to us.</p>\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"_modules\":[]}]}]}]}]'),
(1357,416,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Privacy Policy\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"Baseline Stucco (\\\"we,\\\" \\\"our,\\\" or \\\"us\\\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website <a href=\\\"http://www.baselinestucco.com\\\">www.baselinestucco.com</a>\\u00a0or interact with us online or offline.\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"#f5f5f5\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<h3><strong>1. Information We Collect</strong></h3>\\n<p>We may collect the following types of information:</p>\\n<h4><strong>a. Personal Information</strong></h4>\\n<ul>\\n<li>Name, email address, phone number, and other contact details when you fill out forms or contact us.</li>\\n<li>Any information you voluntarily provide during consultations, inquiries, or service requests.</li>\\n</ul>\\n<h4><strong>b. Non-Personal Information</strong></h4>\\n<ul>\\n<li>IP address, browser type, operating system, and other technical details gathered automatically through cookies and analytics tools.</li>\\n<li>Data about your interactions with our website, such as pages visited and time spent on each page.</li>\\n</ul>\\n<hr />\\n<h3><strong>2. How We Use Your Information</strong></h3>\\n<p>We use the information we collect to:</p>\\n<ul>\\n<li>Provide, manage, and improve our services.</li>\\n<li>Respond to your inquiries and process your service requests.</li>\\n<li>Send updates, promotional materials, or service-related communications (you may opt out at any time).</li>\\n<li>Analyze website usage to enhance user experience.</li>\\n<li>Comply with legal obligations or enforce our terms and conditions.</li>\\n</ul>\\n<hr />\\n<h3><strong>3. Sharing of Information</strong></h3>\\n<p>We do not sell, rent, or share your personal information with third parties except as necessary to:</p>\\n<ul>\\n<li>Work with trusted service providers who assist us in delivering services (e.g., payment processors or hosting providers).</li>\\n<li>Comply with applicable laws, regulations, or legal processes.</li>\\n<li>Protect our rights, property, or safety, as well as those of our clients or others.</li>\\n</ul>\\n<hr />\\n<h3><strong>4. Cookies and Tracking Technologies</strong></h3>\\n<p>We use cookies and similar tracking technologies to:</p>\\n<ul>\\n<li>Improve website functionality and user experience.</li>\\n<li>Analyze website traffic and performance.</li>\\n<li>Provide tailored content and advertisements.</li>\\n</ul>\\n<p>You can disable cookies through your browser settings, but this may impact your experience on our website.</p>\\n<hr />\\n<h3><strong>5. Data Security</strong></h3>\\n<p>We implement appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. However, no data transmission over the internet can be guaranteed as 100% secure, so we encourage you to take precautions when sharing sensitive information online.</p>\\n<hr />\\n<h3><strong>6. Your Rights</strong></h3>\\n<p>You have the right to:</p>\\n<ul>\\n<li>Access and request a copy of the personal information we hold about you.</li>\\n<li>Request corrections to inaccurate or incomplete information.</li>\\n<li>Request the deletion of your personal data, subject to legal and contractual obligations.</li>\\n<li>Opt out of receiving marketing communications at any time.</li>\\n</ul>\\n<p>To exercise your rights, please contact us using the details below.</p>\\n<hr />\\n<h3><strong>7. Third-Party Links</strong></h3>\\n<p>Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of these external sites. We encourage you to review their privacy policies before providing any personal information.</p>\\n<hr />\\n<h3><strong>8. Updates to This Privacy Policy</strong></h3>\\n<p>We may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.</p>\\n<hr />\\n<h3><strong>9. Contact Us</strong></h3>\\n<p>If you have any questions, concerns, or requests related to this Privacy Policy, please contact us:</p>\\n<ul>\\n<li><strong>Email:</strong> [Insert Email Address]</li>\\n<li><strong>Phone:</strong> [Insert Phone Number]</li>\\n<li><strong>Mailing Address:</strong> [Insert Physical Address]</li>\\n</ul>\\n<p><strong>Thank you for trusting Baseline Stucco.</strong> Your privacy and security are important to us.</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"auto auto auto auto\",\"text_max_width\":\"auto\",\"text_padding\":\"0em\",\"text_text_color\":\"hsla(0, 0%, 0%, 0.5)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(1358,416,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1359,3,'_cs_last_save','2024-11-26 21:08:42'),
(1360,153,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"bar\":[\"m49-0\",\"m49-1\",\"m49-2\"],\"dynamic-content\":[]},\"el:e4\":{\"bar\":[\"m49-0\",\"m49-3\",\"m49-4\"],\"dynamic-content\":[]},\"el:e26\":{\"bar\":[\"m49-0\",\"m49-2\",\"m49-4\",\"m49-5\"],\"dynamic-content\":[]},\"el:e2\":{\"container\":[\"m49-6\",\"m49-7\",\"m49-8\",\"m49-9\",\"m49-a\"],\"dynamic-content\":[]},\"el:e5\":{\"container\":[\"m49-6\",\"m49-7\",\"m49-b\",\"m49-c\",\"m49-d\",\"m49-e\",\"m49-f\"],\"dynamic-content\":[]},\"el:e16\":{\"container\":[\"m49-6\",\"m49-7\",\"m49-b\",\"m49-c\",\"m49-d\",\"m49-g\",\"m49-h\"],\"dynamic-content\":[]},\"el:e21\":{\"container\":[\"m49-6\",\"m49-a\",\"m49-b\",\"m49-d\",\"m49-f\",\"m49-g\",\"m49-i\",\"m49-j\"],\"dynamic-content\":[]},\"el:e27\":{\"container\":[\"m49-6\",\"m49-9\",\"m49-a\",\"m49-d\",\"m49-i\",\"m49-k\"],\"dynamic-content\":[]},\"el:e3\":{\"image\":[\"m49-l\"],\"dynamic-content\":[]},\"el:e6\":{\"text-headline\":[\"m49-m\",\"m49-n\",\"m49-o\"],\"dynamic-content\":[]},\"el:e17\":{\"text-headline\":[\"m49-m\",\"m49-n\",\"m49-o\"],\"dynamic-content\":[]},\"el:e20\":{\"text-headline\":[\"m49-m\",\"m49-n\",\"m49-r\",\"m49-s\",\"m49-u\"],\"dynamic-content\":[]},\"el:e22\":{\"text-headline\":[\"m49-m\",\"m49-n\",\"m49-o\",\"m49-v\"],\"dynamic-content\":[]},\"el:e8\":{\"text-headline\":[\"m49-n\",\"m49-p\",\"m49-q\",\"m49-r\",\"m49-s\"],\"dynamic-content\":[]},\"el:e9\":{\"text-headline\":[\"m49-n\",\"m49-p\",\"m49-r\",\"m49-t\"],\"dynamic-content\":[]},\"el:e19\":{\"text-headline\":[\"m49-n\",\"m49-p\",\"m49-q\",\"m49-r\",\"m49-s\"],\"dynamic-content\":[]},\"el:e7\":{\"line\":[\"m49-w\",\"m49-x\",\"m49-y\"],\"dynamic-content\":[]},\"el:e18\":{\"line\":[\"m49-w\",\"m49-x\",\"m49-y\"],\"dynamic-content\":[]},\"el:e23\":{\"line\":[\"m49-w\",\"m49-x\",\"m49-z\"],\"dynamic-content\":[]},\"el:e24\":{\"line\":[\"m49-w\",\"m49-y\",\"m49-10\"],\"dynamic-content\":[]},\"el:e10\":{\"layout-row\":[\"m49-11\"],\"layout-row-columns\":[\"m49-12\"],\"dynamic-content\":[]},\"el:e11\":{\"layout-column\":[\"m49-13\"],\"dynamic-content\":[]},\"el:e12\":{\"anchor\":[\"m49-14\",\"m49-15\",\"m49-16\"],\"dynamic-content\":[]},\"el:e13\":{\"anchor\":[\"m49-14\",\"m49-15\",\"m49-16\"],\"dynamic-content\":[]},\"el:e14\":{\"anchor\":[\"m49-14\",\"m49-15\",\"m49-16\"],\"dynamic-content\":[]},\"el:e15\":{\"anchor\":[\"m49-14\",\"m49-15\",\"m49-16\"],\"dynamic-content\":[]},\"el:e25\":{\"top-links\":[\"m49-15\",\"m49-16\",\"m49-17\",\"m49-18\"],\"sub-links\":[\"m49-15\",\"m49-17\",\"m49-19\"],\"menu\":[\"m49-1a\"],\"dropdown\":[\"m49-1b\"],\"dynamic-content\":[]},\"el:e28\":{\"text-standard\":[\"m49-1c\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m49-0.x-bar{height:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m49-0 .x-bar-content{display:flex;flex-direction:row;flex-grow:0;flex-shrink:1;height:auto;max-width:1200px;} .m49-1.x-bar{padding-top:5rem;padding-right:0rem;padding-bottom:4.5rem;padding-left:0rem;font-size:1rem;background-color:%%post tss-color%%global-color:tTnOH9HL6UMsltkKQ6%%\\/post%%;} .m49-1 .x-bar-content{flex-basis:100%;} .m49-1.x-bar-outer-spacers:after,.m49-1.x-bar-outer-spacers:before{flex-basis:2em;width:2em!important;height:2em;} .m49-1.x-bar-space{font-size:1rem;} .m49-2.x-bar{z-index:9999;} .m49-2 .x-bar-content{justify-content:center;align-items:center;} .m49-3.x-bar{padding-top:1.5em;padding-bottom:1em;font-size:16px;background-color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;box-shadow:0em 0.15em 2em rgba(0, 0, 0, 0);z-index:99;} .m49-3 .x-bar-content{justify-content:space-between;align-items:flex-start;align-content:flex-start;} .m49-3.x-bar-space{font-size:16px;} .m49-4.x-bar{padding-right:0em;padding-left:0em;} .m49-4 .x-bar-content{flex-wrap:wrap;flex-basis:88%;} .m49-4.x-bar-outer-spacers:after,.m49-4.x-bar-outer-spacers:before{flex-basis:0em;width:0em!important;height:0em;} .m49-5.x-bar{padding-top:30px;padding-bottom:0px;font-size:14px;background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m49-5 .x-bar-content{align-content:center;} .m49-5.x-bar-space{font-size:14px;} .m49-6.x-bar-container{display:flex;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;z-index:1;} .m49-7.x-bar-container{flex-direction:column;} .m49-8.x-bar-container{justify-content:center;width:100%;margin-top:-50px;margin-right:0px;margin-bottom:-50px;margin-left:0px;text-align:center;} .m49-9.x-bar-container{align-items:center;} .m49-a.x-bar-container{flex-grow:0;flex-shrink:1;flex-basis:auto;} .m49-b.x-bar-container{justify-content:flex-start;align-items:flex-start;padding-top:0em;padding-left:0em;} .m49-c.x-bar-container{flex-grow:1;flex-shrink:0;flex-basis:320px;padding-bottom:4em;} .m49-e.x-bar-container{padding-right:4em;} .m49-f.x-bar-container{background-color:rgba(255, 255, 255, 0);} .m49-g.x-bar-container{padding-right:0em;} .m49-h.x-bar-container{background-color:rgba(140, 51, 51, 0);} .m49-i.x-bar-container{flex-direction:row;} .m49-j.x-bar-container{flex-wrap:wrap;align-content:flex-start;padding-bottom:2em;} .m49-k.x-bar-container{justify-content:space-between;padding-top:0px;padding-right:0px;padding-bottom:30px;padding-left:0px;} .m49-l.x-image{font-size:1em;max-width:400px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m49-n.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m49-n.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;font-weight:%%post tss-fw%%inherit|500%%\\/post%%;letter-spacing:0em;text-transform:none;} .m49-o.x-text .x-text-content-text-primary{font-size:1.5625em;line-height:1;color:rgb(255, 255, 255);} .m49-p.x-text{margin-top:0em;margin-right:0em;margin-left:0em;} .m49-q.x-text{margin-bottom:40px;} .m49-r.x-text .x-text-content-text-primary{font-size:1.125em;line-height:1.5;color:%%post tss-color%%global-color:primary%%\\/post%%;} .m49-r.x-text .x-text-content-text-subheadline{margin-top:0.35em;font-family:%%post tss-ff%%google:jost%%\\/post%%;font-size:1.125em;font-style:normal;font-weight:%%post tss-fw%%google:jost|200%%\\/post%%;line-height:1.4;letter-spacing:0em;text-transform:none;} .m49-s.x-text .x-text-content-text-subheadline{color:rgb(255, 255, 255);} .m49-t.x-text{margin-bottom:20px;} .m49-t.x-text .x-text-content-text-subheadline{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m49-u.x-text:hover .x-text-content-text-subheadline,.m49-u.x-text[class*=\\\"active\\\"] .x-text-content-text-subheadline,[data-x-effect-provider*=\\\"colors\\\"]:hover .m49-u.x-text .x-text-content-text-subheadline{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m49-v.x-text{width:100%;} .m49-w{width:100%;margin-right:0px;margin-left:0px;border-top-width:4px;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;font-size:1em;} .m49-x{max-width:40px;margin-top:15px;border-top-color:%%post tss-color%%global-color:YFP6101dwXohQOJ4sw%%\\/post%%;border-right-color:%%post tss-color%%global-color:YFP6101dwXohQOJ4sw%%\\/post%%;border-bottom-color:%%post tss-color%%global-color:YFP6101dwXohQOJ4sw%%\\/post%%;border-left-color:%%post tss-color%%global-color:YFP6101dwXohQOJ4sw%%\\/post%%;} .m49-y{margin-bottom:30px;} .m49-z{margin-bottom:0px;} .m49-10{max-width:none;margin-top:0px;border-top-color:rgba(59, 59, 59, 0);border-right-color:rgba(59, 59, 59, 0);border-bottom-color:rgba(59, 59, 59, 0);border-left-color:rgba(59, 59, 59, 0);} .m49-11.x-row{z-index:auto;margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;font-size:1em;} .m49-11 > .x-row-inner{flex-direction:row;justify-content:flex-start;align-items:stretch;align-content:stretch;margin-top:calc(((20px \\/ 2) + 1px) * -1);margin-right:calc(((20px \\/ 2) + 1px) * -1);margin-bottom:calc(((20px \\/ 2) + 1px) * -1);margin-left:calc(((20px \\/ 2) + 1px) * -1);} .m49-11 > .x-row-inner > *{margin-top:calc(20px \\/ 2);margin-bottom:calc(20px \\/ 2);margin-right:calc(20px \\/ 2);margin-left:calc(20px \\/ 2);} .m49-12{--gap:20px;} .m49-12 > .x-row-inner > *:nth-child(1n - 0) \\/** 6746371bc4d2d *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m49-13.x-col{z-index:1;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;text-align:left;} .m49-14.x-anchor {width:2.5em;height:2.5em;margin-top:0px;margin-right:5px;margin-bottom:0px;margin-left:5px;background-color:rgba(255, 255, 255, 0.25);} .m49-14.x-anchor:hover,.m49-14.x-anchor[class*=\\\"active\\\"],[data-x-effect-provider*=\\\"colors\\\"]:hover .m49-14.x-anchor {background-color:%%post tss-color%%global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14%%\\/post%%;} .m49-14.x-anchor .x-graphic {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m49-14.x-anchor .x-graphic-icon {font-size:0.875em;width:auto;color:rgb(255, 255, 255);border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;background-color:transparent;} .m49-15.x-anchor {border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m49-15.x-anchor .x-anchor-content {display:flex;flex-direction:row;align-items:center;} .m49-16.x-anchor .x-anchor-content {justify-content:center;} .m49-17.x-anchor {background-color:transparent;} .m49-17.x-anchor .x-anchor-text {margin-top:5px;margin-bottom:5px;margin-left:5px;} .m49-17.x-anchor .x-anchor-text-primary {font-family:inherit;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;} .m49-17.x-anchor .x-anchor-sub-indicator {font-size:1em;color:rgb(255, 255, 255);} .m49-18.x-anchor .x-anchor-text {margin-right:5px;} .m49-18.x-anchor .x-anchor-text-primary {font-size:1rem;line-height:1.8;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m49-18.x-anchor:hover .x-anchor-sub-indicator,.m49-18.x-anchor[class*=\\\"active\\\"] .x-anchor-sub-indicator,[data-x-effect-provider*=\\\"colors\\\"]:hover .m49-18.x-anchor .x-anchor-sub-indicator {color:%%post tss-color%%global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14%%\\/post%%;} .m49-19.x-anchor .x-anchor-content {justify-content:flex-start;padding-top:0.75em;padding-right:0.75em;padding-bottom:0.75em;padding-left:0.75em;} .m49-19.x-anchor .x-anchor-text {margin-right:auto;} .m49-19.x-anchor .x-anchor-text-primary {font-size:1em;line-height:1;color:rgb(255, 255, 255);} .m49-19.x-anchor:hover .x-anchor-text-primary,.m49-19.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m49-19.x-anchor .x-anchor-text-primary {color:rgb(52, 204, 153);} .m49-19.x-anchor .x-anchor-sub-indicator {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m49-19.x-anchor:hover .x-anchor-sub-indicator,.m49-19.x-anchor[class*=\\\"active\\\"] .x-anchor-sub-indicator,[data-x-effect-provider*=\\\"colors\\\"]:hover .m49-19.x-anchor .x-anchor-sub-indicator {color:rgb(52, 204, 153);} .m49-1a{font-size:1em;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;align-self:stretch;flex-grow:1;flex-shrink:1;flex-basis:50%;} .m49-1a > li,.m49-1a > li > a{flex-grow:0;flex-shrink:1;flex-basis:auto;} .m49-1b .x-dropdown {width:14em;font-size:16px;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;background-color:rgb(25, 25, 25);box-shadow:0em 0.15em 2em 0em rgba(0, 0, 0, 0.15);transition-duration:500ms,500ms,0s;transition-timing-function:cubic-bezier(0.400, 0.000, 0.200, 1.000);} .m49-1b .x-dropdown:not(.x-active) {transition-delay:0s,0s,500ms;} .m49-1c.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-family:%%post tss-ff%%google:jost%%\\/post%%;font-size:.8rem;font-style:normal;font-weight:%%post tss-fw%%google:jost|400%%\\/post%%;line-height:1.4;letter-spacing:0em;text-align:center;text-transform:none;color:rgb(208, 208, 208);} .m49-1c.x-text > :first-child{margin-top:0;} .m49-1c.x-text > :last-child{margin-bottom:0;}\",\"element_css\":\"                  .e153-e19 a {color: #fff;}\\n.e153-e19 a:hover {color: rgb(52, 204, 153);} .e153-e20 a {color: #fff;}\\n.e153-e20 a:hover {color: rgb(52, 204, 153);}     .e153-e25 a:hover .x-anchor-text-primary {\\n  text-decoration: underline;\\n} @media (max-width: 727px) {\\n\\t.e153-e26.x-bar-content {\\n\\t\\tflex-direction: column;\\n\\t}\\n}  \"}}'),
(1361,417,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Privacy Policy\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">Baseline Stucco (\\\"we,\\\" \\\"our,\\\" or \\\"us\\\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website <a style=\\\"color: #ffffff;\\\" href=\\\"http://www.baselinestucco.com\\\">www.baselinestucco.com</a>&nbsp;or interact with us online or offline.</span></p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:primary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<h3><span style=\\\"color: #ffffff;\\\"><strong>1. Information We Collect</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We may collect the following types of information:</span></p>\\n\\n<h4><span style=\\\"color: #ffffff;\\\"><strong>a. Personal Information</strong></span></h4>\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Name, email address, phone number, and other contact details when you fill out forms or contact us.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Any information you voluntarily provide during consultations, inquiries, or service requests.</span></li>\\n</ul>\\n<h4><span style=\\\"color: #ffffff;\\\"><strong>b. Non-Personal Information</strong></span></h4>\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">IP address, browser type, operating system, and other technical details gathered automatically through cookies and analytics tools.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Data about your interactions with our website, such as pages visited and time spent on each page.</span></li>\\n</ul>\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>2. How We Use Your Information</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We use the information we collect to:</span></p>\\n\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Provide, manage, and improve our services.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Respond to your inquiries and process your service requests.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Send updates, promotional materials, or service-related communications (you may opt out at any time).</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Analyze website usage to enhance user experience.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Comply with legal obligations or enforce our terms and conditions.</span></li>\\n</ul>\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>3. Sharing of Information</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We do not sell, rent, or share your personal information with third parties except as necessary to:</span></p>\\n\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Work with trusted service providers who assist us in delivering services (e.g., payment processors or hosting providers).</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Comply with applicable laws, regulations, or legal processes.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Protect our rights, property, or safety, as well as those of our clients or others.</span></li>\\n</ul>\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>4. Cookies and Tracking Technologies</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We use cookies and similar tracking technologies to:</span></p>\\n\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Improve website functionality and user experience.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Analyze website traffic and performance.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Provide tailored content and advertisements.</span></li>\\n</ul>\\n<p><span style=\\\"color: #ffffff;\\\">You can disable cookies through your browser settings, but this may impact your experience on our website.</span></p>\\n\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>5. Data Security</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We implement appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. However, no data transmission over the internet can be guaranteed as 100% secure, so we encourage you to take precautions when sharing sensitive information online.</span></p>\\n\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>6. Your Rights</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">You have the right to:</span></p>\\n\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Access and request a copy of the personal information we hold about you.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Request corrections to inaccurate or incomplete information.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Request the deletion of your personal data, subject to legal and contractual obligations.</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\">Opt out of receiving marketing communications at any time.</span></li>\\n</ul>\\n<p><span style=\\\"color: #ffffff;\\\">To exercise your rights, please contact us using the details below.</span></p>\\n\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>7. Third-Party Links</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of these external sites. We encourage you to review their privacy policies before providing any personal information.</span></p>\\n\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>8. Updates to This Privacy Policy</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">We may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.</span></p>\\n\\n\\n<hr />\\n\\n<h3><span style=\\\"color: #ffffff;\\\"><strong>9. Contact Us</strong></span></h3>\\n<p><span style=\\\"color: #ffffff;\\\">If you have any questions, concerns, or requests related to this Privacy Policy, please contact us:</span></p>\\n\\n<ul>\\n \\t<li><span style=\\\"color: #ffffff;\\\"><strong>Email:</strong> [Insert Email Address]</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\"><strong>Phone:</strong> [Insert Phone Number]</span></li>\\n \\t<li><span style=\\\"color: #ffffff;\\\"><strong>Mailing Address:</strong> [Insert Physical Address]</span></li>\\n</ul>\\n<p><span style=\\\"color: #ffffff;\\\"><strong>Thank you for trusting Baseline Stucco.</strong> Your privacy and security are important to us.</span></p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"auto auto auto auto\",\"text_max_width\":\"auto\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]}]'),
(1362,417,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1365,418,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_text_align\":\"center\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Privacy Policy\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p><span style=\\\"color: #ffffff;\\\">Baseline Stucco (\\\"we,\\\" \\\"our,\\\" or \\\"us\\\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website <a style=\\\"color: #ffffff;\\\" href=\\\"http://www.baselinestucco.com\\\">www.baselinestucco.com</a>&nbsp;or interact with us online or offline.</span></p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"55px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>We may collect both personal and non-personal information. Personal information includes details you provide to us, such as your name, email address, phone number, and other contact details when filling out forms, contacting us, or requesting our services. Non-personal information is collected automatically and may include your IP address, browser type, operating system, and information about your interactions with our website, such as pages visited and time spent on each page.</p>\\n<p>The information we collect is used to provide, manage, and improve our services, respond to inquiries, process service requests, send updates or promotional materials, and analyze website usage to enhance the user experience. We may also use your information to comply with legal obligations or enforce our terms and conditions.</p>\\n<p>We do not sell, rent, or share your personal information with third parties except as necessary. This includes working with trusted service providers who assist us in delivering services, complying with applicable laws, or protecting our rights and safety or those of our clients.</p>\\n<p>Cookies and similar tracking technologies are used to improve website functionality, analyze traffic, and provide tailored content and advertisements. You can disable cookies through your browser settings, but doing so may affect your website experience.</p>\\n<p>We take appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. While we strive to secure your data, no method of data transmission over the internet is entirely secure, so we encourage you to take precautions when sharing sensitive information online.</p>\\n<p>You have rights regarding your personal data, including accessing, correcting, or requesting deletion of the information we hold about you. You can also opt out of receiving marketing communications at any time. To exercise your rights, please contact us using the details provided below.</p>\\n<p>Our website may include links to third-party websites, which have their own privacy practices. We are not responsible for the content or privacy policies of these external sites and encourage you to review their policies before providing personal information.</p>\\n<p>We may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.</p>\\n<p>If you have questions, concerns, or requests related to this Privacy Policy, please contact us by email at [Insert Email Address], by phone at [Insert Phone Number], or by mail at [Insert Physical Address].</p>\\n<p>Thank you for trusting Baseline Stucco. Your privacy and security are important to us.</p>\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"_modules\":[]}]}]}]}]'),
(1366,418,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1368,419,'_wp_attached_file','2024/11/IMG_0786.jpg'),
(1369,419,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_0786.jpg\";s:8:\"filesize\";i:213676;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0786-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17235;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0786-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_0786-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77365;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_0786-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5810;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166245;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121173;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166245;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121173;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_0786.heic\";}'),
(1370,420,'_wp_attached_file','2024/11/IMG_0785.jpg'),
(1371,420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_0785.jpg\";s:8:\"filesize\";i:205018;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0785-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17241;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_0785-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0785-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8727;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_0785-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72854;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_0785-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6042;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_0785-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157549;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_0785-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119203;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0785-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157549;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0785-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119203;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_0785.heic\";}'),
(1372,421,'_wp_attached_file','2024/11/IMG_0783.jpg'),
(1373,421,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_0783.jpg\";s:8:\"filesize\";i:250692;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0783-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18662;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_0783-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142135;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0783-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9730;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_0783-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84544;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_0783-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6262;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_0783-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188689;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_0783-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128509;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0783-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188689;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0783-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128509;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_0783.heic\";}'),
(1374,422,'_wp_attached_file','2024/11/IMG_0782.jpg'),
(1375,422,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_0782.jpg\";s:8:\"filesize\";i:262507;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0782-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19311;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_0782-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149717;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0782-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9382;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_0782-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89597;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_0782-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6210;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_0782-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197310;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_0782-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152491;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0782-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197310;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0782-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_0782.heic\";}'),
(1376,423,'_wp_attached_file','2024/11/IMG_0781.jpg'),
(1377,423,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_0781.jpg\";s:8:\"filesize\";i:161617;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_0781-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16379;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_0781-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97409;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_0781-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_0781-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60996;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_0781-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6019;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_0781-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126684;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_0781-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93772;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0781-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126684;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_0781-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_0781.heic\";}'),
(1378,424,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"113:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"109:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"406:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"116:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>ResidenPelhamtial</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1379,424,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1380,425,'_wp_attached_file','2024/11/IMG_1262.jpg'),
(1381,425,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1262.jpg\";s:8:\"filesize\";i:171323;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1262-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14306;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1262-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96905;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1262-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8056;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1262-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57621;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1262-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5923;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1262-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130253;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1262-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102134;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1262-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130253;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1262-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102134;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1262.heic\";}'),
(1382,426,'_wp_attached_file','2024/11/IMG_1258.jpg'),
(1383,426,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1258.jpg\";s:8:\"filesize\";i:202687;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1258-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19181;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1258-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123382;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1258-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9967;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1258-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77081;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1258-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6630;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1258-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160440;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1258-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118684;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1258-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160440;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1258-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1258.heic\";}'),
(1384,427,'_wp_attached_file','2024/11/IMG_1255.jpg'),
(1385,427,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1255.jpg\";s:8:\"filesize\";i:160198;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1255-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14930;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1255-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94967;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1255-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8585;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1255-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58446;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1255-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6014;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1255-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124809;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1255-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99662;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1255-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124809;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1255-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99662;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1255.heic\";}'),
(1386,428,'_wp_attached_file','2024/11/IMG_1253.jpg'),
(1387,428,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1253.jpg\";s:8:\"filesize\";i:189881;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1253-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15845;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1253-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1253-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1253-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67469;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1253-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6035;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1253-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146762;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1253-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106772;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1253-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146762;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1253-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1253.heic\";}'),
(1388,429,'_wp_attached_file','2024/11/IMG_1251.jpg'),
(1389,429,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1251.jpg\";s:8:\"filesize\";i:173418;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1251-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16146;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1251-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1251-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8682;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1251-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63137;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1251-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6242;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1251-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135795;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1251-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100371;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1251-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135795;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1251-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100371;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1251.heic\";}'),
(1390,430,'_wp_attached_file','2024/11/IMG_1249.jpg'),
(1391,430,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:20:\"2024/11/IMG_1249.jpg\";s:8:\"filesize\";i:163953;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1249-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15264;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1249-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96631;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1249-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8773;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1249-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59277;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_1249-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6202;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_1249-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127161;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_1249-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95918;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1249-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127161;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_1249-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1249.heic\";}'),
(1392,431,'_wp_attached_file','2024/11/IMG_0786-1.jpg'),
(1393,431,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:22:\"2024/11/IMG_0786-1.jpg\";s:8:\"filesize\";i:213676;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_0786-1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17235;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"IMG_0786-1-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_0786-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"IMG_0786-1-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77365;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_0786-1-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5810;}s:5:\"entry\";a:5:{s:4:\"file\";s:23:\"IMG_0786-1-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166245;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:23:\"IMG_0786-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121173;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:23:\"IMG_0786-1-1200x896.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:896;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166245;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:23:\"IMG_0786-1-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121173;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IMG_0786-1.heic\";}'),
(1394,432,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"337:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"334:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"335:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1395,432,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1396,433,'_wp_attached_file','2024/11/IMG_2439.jpg'),
(1397,433,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_2439.jpg\";s:8:\"filesize\";i:19073;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_2439-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2439-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9114;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_2439-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2439.heic\";}'),
(1398,434,'_wp_attached_file','2024/11/IMG_2440.jpg'),
(1399,434,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_2440.jpg\";s:8:\"filesize\";i:21439;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_2440-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2440-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9556;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_2440-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2440.heic\";}'),
(1400,435,'_wp_attached_file','2024/11/IMG_2435.jpg'),
(1401,435,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_2435.jpg\";s:8:\"filesize\";i:14645;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_2435-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13095;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2435-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7513;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_2435-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2435.heic\";}'),
(1402,436,'_wp_attached_file','2024/11/IMG_2436.jpg'),
(1403,436,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:20:\"2024/11/IMG_2436.jpg\";s:8:\"filesize\";i:20598;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_2436-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2436-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9016;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2436-100x133.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7534;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2436.heic\";}'),
(1404,437,'_wp_attached_file','2024/11/IMG_2438.jpg'),
(1405,437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_2438.jpg\";s:8:\"filesize\";i:22075;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_2438-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18812;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2438-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9642;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_2438-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6615;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2438.heic\";}'),
(1406,438,'_wp_attached_file','2024/11/IMG_3196.jpg'),
(1407,438,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_3196.jpg\";s:8:\"filesize\";i:23229;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3196-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3196-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11264;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_3196-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_3196.heic\";}'),
(1408,439,'_wp_attached_file','2024/11/IMG_3194.jpg'),
(1409,439,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_3194.jpg\";s:8:\"filesize\";i:21853;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3194-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18697;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3194-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10344;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_3194-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7163;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_3194.heic\";}'),
(1410,440,'_wp_attached_file','2024/11/IMG_3195.jpg'),
(1411,440,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_3195.jpg\";s:8:\"filesize\";i:24086;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3195-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3195-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10679;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_3195-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_3195.heic\";}'),
(1412,441,'_wp_attached_file','2024/11/IMG_3197.jpg'),
(1413,441,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2024/11/IMG_3197.jpg\";s:8:\"filesize\";i:25918;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3197-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3197-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11712;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_3197-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_3197.heic\";}'),
(1414,442,'_wp_attached_file','2024/11/649FA6B2-1E2E-4C20-8BBD-A7FBA51EB500.heic'),
(1415,442,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:67580;}'),
(1416,443,'_wp_attached_file','2024/11/IMG_6294-scaled.jpg'),
(1417,443,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_6294-scaled.jpg\";s:8:\"filesize\";i:958049;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_6294-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21666;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_6294-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_6294-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_6294-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105975;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_6294-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:383459;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_6294-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:646301;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_6294-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8224;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_6294-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243840;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_6294-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202148;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_6294-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243840;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_6294-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202148;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_6294.heic\";}'),
(1418,444,'_wp_attached_file','2024/11/IMG_6292-scaled.jpg'),
(1419,444,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/11/IMG_6292-scaled.jpg\";s:8:\"filesize\";i:775586;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_6292-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19307;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_6292-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142039;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_6292-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11026;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_6292-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83843;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_6292-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304201;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_6292-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:519411;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"IMG_6292-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8131;}s:5:\"entry\";a:5:{s:4:\"file\";s:21:\"IMG_6292-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192445;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_6292-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137733;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_6292-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192445;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_6292-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137733;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_6292.heic\";}'),
(1420,445,'_wp_attached_file','2024/11/IMG_6291-scaled.jpg'),
(1421,445,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/11/IMG_6291-scaled.jpg\";s:8:\"filesize\";i:749776;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_6291-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17711;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_6291-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_6291-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"IMG_6291-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139513;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_6291-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301054;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_6291-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:508572;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_6291-100x133.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8787;}s:5:\"entry\";a:5:{s:4:\"file\";s:22:\"IMG_6291-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:324703;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:21:\"IMG_6291-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100539;}s:15:\"entry-fullwidth\";a:5:{s:4:\"file\";s:22:\"IMG_6291-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:324703;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:21:\"IMG_6291-1200x671.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_6291.heic\";}'),
(1422,446,'_wp_attached_file','2024/11/IMG_2439-1.jpg'),
(1423,446,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2024/11/IMG_2439-1.jpg\";s:8:\"filesize\";i:19073;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_2439-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_2439-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9114;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_2439-1-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IMG_2439-1.heic\";}'),
(1424,447,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Pleasantville, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"439:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"440:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"333:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"332:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"331:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"330:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1425,447,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1426,448,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Pleasantville, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"40:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"117:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"121:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"97:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"118:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"298:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"38:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Fishkill, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"439:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"440:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1427,448,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}');
INSERT INTO `wp_postmeta` VALUES
(1428,449,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Pleasantville, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>hillsdale, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"445:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"443:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Fishkill, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"439:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"440:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1429,449,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1430,450,'_cornerstone_data','[{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Comprenhesive solutions\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:4c696e6b\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 32px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"<strong>Residential Stucco: Transform Your Home with Timeless Beauty and Durability</strong>\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0px auto 40px auto\",\"text_max_width\":\"12em\",\"text_padding\":\"0em 0em 1em 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"At Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\",\"text_subheadline_font_size\":\"0.385em\",\"text_subheadline_font_style\":\"italic\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.55\",\"text_subheadline_spacing\":\"0.5em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"left\",\"text_subheadline_text_color\":\"#000000\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"left\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Our Residential Stucco Services Include:</strong></h3>\\n<ul>\\n \\t<li>New construction stucco applications.</li>\\n \\t<li>Renovations and upgrades to existing stucco finishes.</li>\\n \\t<li>Crack repair and seamless patchwork for a flawless look.</li>\\n \\t<li>Custom texturing and color matching to fit your home\\u2019s design.</li>\\n</ul>\",\"text_margin\":\"-2.137em 0em 0em 0em\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"center\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsla(0, 0%, 100%, 0)\",\"image_bg_color_alt\":\"hsla(0, 0%, 100%, 0)\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.25)\",\"image_box_shadow_dimensions\":\"!0em 0.15em 2em 0em\",\"image_height\":600,\"image_inner_border_radius\":\"!2px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"!3px\",\"image_padding\":\"4px\",\"image_src\":\"412:full\",\"image_width\":1160},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<h3><strong>Why Choose Baseline Stucco for Your Home?</strong></h3>\\n<ul>\\n<li><strong>Customizable Designs:</strong> Choose from a wide range of colors and textures to suit your style.</li>\\n<li><strong>Increased Property Value:</strong> Enhance your home\'s curb appeal and market value.</li>\\n<li><strong>Energy Efficiency:</strong> Stucco\'s natural insulating properties help reduce heating and cooling costs.</li>\\n<li><strong>Weather Resistance:</strong> Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.</li>\\n<li><strong>Low Maintenance:</strong> Durable and easy to maintain, saving you time and effort.</li>\\n</ul>\",\"text_margin\":\"0.404em 0em 0em 0em\",\"text_text_align\":\"left\",\"_modules\":[]}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Man Hours Worked\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"238,956,754\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Sq. Footage of Stucco Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"535,789,230\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"counter\",\"_bp_base\":\"4_4\",\"_order\":0,\"counter_after_content\":\"Work Completed\",\"counter_before_after\":true,\"counter_before_after_font_weight\":\"400\",\"counter_before_after_letter_spacing\":\"0.25em\",\"counter_before_after_text_align\":\"center\",\"counter_before_after_text_color\":\"#888888\",\"counter_before_after_text_shadow_dimensions\":\"0px 0px 0px\",\"counter_before_after_text_transform\":\"uppercase\",\"counter_duration\":\"1.5s\",\"counter_end\":\"400,456,349\",\"counter_margin\":\"40px 0px 0px 0px\",\"counter_number_font_size\":\"3em\",\"counter_number_font_weight\":\"700\",\"counter_number_letter_spacing\":\"-0.015em\",\"counter_number_margin\":\"0em 0px 0.15em 0px\",\"counter_number_prefix_content\":\"$\",\"counter_number_suffix_content\":\".47\",\"counter_number_text_align\":\"center\",\"counter_number_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"counter_number_text_shadow_dimensions\":\"0px 0px 0px\",\"hide_login\":\"\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"2em 0em 2em 0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"100\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Wappingers Falls, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"398:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"401:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"403:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"402:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"399:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Residential</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Outside Living - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"!0em\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"3px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"!0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"layout_cell_tag\":\"a\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"410:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"407:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"408:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"409:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Five Guys (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Pleasantville, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Living Room - Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"6px 0px 0px 0px\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_padding\":\"0px 0px 0px 0px\",\"image_src\":\"428:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"425:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"426:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"427:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"430:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>hillsdale, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_margin\":\"2px 0px 2px 0px\",\"section_padding\":\"2px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"445:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"443:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"444:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Hyundai Goshan Header (1)\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"Pelham Manor\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"6px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2) (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 0.5em 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"422:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"419:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"420:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"423:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guest  Entertainment - Text (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_margin\":\"10em 10em 10em calc(10%)\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_content\":\"<p>Guest &amp; Entertaining</p>\",\"text_font_size\":\"calc(100vw - 92vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Guests Entertainment (1)\",\"_m\":{\"e\":2},\"hide_bp\":\" lg md sm xl xs\",\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0px 0px 4px 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"189:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"222:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"190:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"191:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (2)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_padding\":\"0px 0px 4px 0px\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"192:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"193:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"180:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"181:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]},{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container (1)\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"4px\",\"layout_grid_gap_row\":\"4px\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"!0px 0 0px 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"182:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"183:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"184:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_inner_border_radius\":\"!6px\",\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"185:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Farms\",\"_m\":{\"e\":2},\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_margin\":\"4em 0em 4em 0\",\"section_padding\":\"!0px\",\"_modules\":[{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"layout_row_gap_column\":\"0px\",\"layout_row_gap_row\":\"0px\",\"layout_row_global_container\":true,\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"text_content\":\"<p>Fishkill, NY</p>\",\"text_font_family\":\"system:geneva\",\"text_font_size\":\"calc(2rem + 3.5vw)\",\"text_line_height\":\"calc(100vw - 92vw)\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:primary\",\"text_text_transform\":\"uppercase\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Lagrange Photos\",\"_m\":{\"e\":2},\"section_bg_color\":\"#ffffff\",\"section_padding\":\"0em 0px 0.5em 0px\",\"_modules\":[{\"_type\":\"layout-div\",\"_bp_base\":\"4_4\",\"_label\":\"Container\",\"_m\":{\"e\":1},\"layout_div_flex_align\":\"center\",\"layout_div_flex_justify\":\"center\",\"layout_div_margin\":\"6px 0px 2px 0px\",\"_modules\":[{\"_type\":\"layout-grid\",\"_bp_base\":\"4_4\",\"_label\":\"ST Gallery\",\"_m\":{\"e\":1},\"layout_grid_align_content\":\"stretch\",\"layout_grid_border_radius\":\"!18px\",\"layout_grid_gap_column\":\"0.5em\",\"layout_grid_gap_row\":\"0.5em\",\"layout_grid_justify_content\":\"stretch\",\"layout_grid_margin\":\"0px 0 0.5em 0\",\"layout_grid_max_width\":\"100%\",\"layout_grid_overflow\":\"hidden\",\"layout_grid_template_columns\":\"repeat(2, 1fr)\",\"layout_grid_template_rows\":\"repeat(3, clamp(150px, 27vmin, 200px))\",\"layout_grid_width\":\"100%\",\"_modules\":[{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"3\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"2\",\"layout_cell_row_start\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"441:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"3\",\"layout_cell_column_start\":\"2\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_bg_color\":\"#e3f0fc\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"!0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"439:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]},{\"_type\":\"layout-cell\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"layout_cell_bg_color\":\"#e3f0fc\",\"layout_cell_border_radius\":\"3px\",\"layout_cell_column_end\":\"2\",\"layout_cell_column_start\":\"1\",\"layout_cell_overflow\":\"hidden\",\"layout_cell_row_end\":\"4\",\"layout_cell_row_start\":\"3\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_label\":\"ST Image\",\"image_alt\":\"Placeholder Image\",\"image_display\":\"block\",\"image_height\":900,\"image_href\":\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg\",\"image_inner_border_radius\":\"!6px\",\"image_link\":true,\"image_margin\":\"0px 0px 0px 0px\",\"image_object_fit\":\"cover\",\"image_src\":\"440:full\",\"image_styled_height\":\"100%\",\"image_styled_width\":\"100%\",\"image_width\":1600,\"_modules\":[]}]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"2em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]}]'),
(1431,450,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1432,452,'_edit_lock','1732718052:1'),
(1433,46,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\"\",\"element_css\":\"\"}}'),
(1434,453,'_wp_attached_file','2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d.webp'),
(1435,453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:770;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d.webp\";s:8:\"filesize\";i:698836;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:103424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:628972;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13066;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:635626;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:635626;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1438,452,'_thumbnail_id','453'),
(1439,454,'_cornerstone_data',NULL),
(1440,454,'_cornerstone_settings',NULL),
(1441,452,'_edit_last','1'),
(1442,452,'_x_entry_body_css_class',''),
(1443,452,'_x_post_layout','off'),
(1444,452,'_x_entry_alternate_index_title',''),
(1445,452,'_x_entry_bg_image_full',''),
(1446,452,'_x_entry_bg_image_full_fade','750'),
(1447,452,'_x_entry_bg_image_full_duration','7500'),
(1448,452,'_x_quote_quote',''),
(1449,452,'_x_quote_cite',''),
(1450,452,'_x_link_url',''),
(1451,452,'_x_video_aspect_ratio','16:9'),
(1452,452,'_x_video_m4v',''),
(1453,452,'_x_video_ogv',''),
(1454,452,'_x_video_embed',''),
(1455,452,'_x_audio_mp3',''),
(1456,452,'_x_audio_ogg',''),
(1457,452,'_x_audio_embed',''),
(1458,455,'_edit_lock','1732718310:1'),
(1459,456,'_wp_attached_file','2024/11/verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632.webp'),
(1460,456,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:770;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632.webp\";s:8:\"filesize\";i:627060;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:96484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27438;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:568650;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13454;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:558990;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:558990;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1463,455,'_thumbnail_id','456'),
(1464,457,'_cornerstone_data',NULL),
(1465,457,'_cornerstone_settings',NULL),
(1466,455,'_edit_last','1'),
(1467,455,'_x_entry_body_css_class',''),
(1468,455,'_x_post_layout','off'),
(1469,455,'_x_entry_alternate_index_title',''),
(1470,455,'_x_entry_bg_image_full',''),
(1471,455,'_x_entry_bg_image_full_fade','750'),
(1472,455,'_x_entry_bg_image_full_duration','7500'),
(1473,455,'_x_quote_quote',''),
(1474,455,'_x_quote_cite',''),
(1475,455,'_x_link_url',''),
(1476,455,'_x_video_aspect_ratio','16:9'),
(1477,455,'_x_video_m4v',''),
(1478,455,'_x_video_ogv',''),
(1479,455,'_x_video_embed',''),
(1480,455,'_x_audio_mp3',''),
(1481,455,'_x_audio_ogg',''),
(1482,455,'_x_audio_embed',''),
(1483,458,'_edit_lock','1732718364:1'),
(1484,459,'_wp_attached_file','2024/11/verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102.webp'),
(1485,459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:770;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102.webp\";s:8:\"filesize\";i:497768;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:448998;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10864;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:435708;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102-770x671.webp\";s:5:\"width\";i:770;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:435708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1488,460,'_cornerstone_data',NULL),
(1489,460,'_cornerstone_settings',NULL),
(1490,458,'_edit_last','1'),
(1491,458,'_x_entry_body_css_class',''),
(1492,458,'_x_post_layout','off'),
(1493,458,'_x_entry_alternate_index_title',''),
(1494,458,'_x_entry_bg_image_full',''),
(1495,458,'_x_entry_bg_image_full_fade','750'),
(1496,458,'_x_entry_bg_image_full_duration','7500'),
(1497,458,'_x_quote_quote',''),
(1498,458,'_x_quote_cite',''),
(1499,458,'_x_link_url',''),
(1500,458,'_x_video_aspect_ratio','16:9'),
(1501,458,'_x_video_m4v',''),
(1502,458,'_x_video_ogv',''),
(1503,458,'_x_video_embed',''),
(1504,458,'_x_audio_mp3',''),
(1505,458,'_x_audio_ogg',''),
(1506,458,'_x_audio_embed',''),
(1509,458,'_thumbnail_id','459'),
(1510,461,'_edit_lock','1732718547:1'),
(1511,462,'_wp_attached_file','2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29.webp'),
(1512,462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29.webp\";s:8:\"filesize\";i:1490340;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:118368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:742750;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14928;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1000978;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1000978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1515,463,'_cornerstone_data',NULL),
(1516,463,'_cornerstone_settings',NULL),
(1517,461,'_edit_last','1'),
(1518,461,'_x_entry_body_css_class',''),
(1519,461,'_x_post_layout','off'),
(1520,461,'_x_entry_alternate_index_title',''),
(1521,461,'_x_entry_bg_image_full',''),
(1522,461,'_x_entry_bg_image_full_fade','750'),
(1523,461,'_x_entry_bg_image_full_duration','7500'),
(1524,461,'_x_quote_quote',''),
(1525,461,'_x_quote_cite',''),
(1526,461,'_x_link_url',''),
(1527,461,'_x_video_aspect_ratio','16:9'),
(1528,461,'_x_video_m4v',''),
(1529,461,'_x_video_ogv',''),
(1530,461,'_x_video_embed',''),
(1531,461,'_x_audio_mp3',''),
(1532,461,'_x_audio_ogg',''),
(1533,461,'_x_audio_embed',''),
(1536,461,'_thumbnail_id','462'),
(1539,464,'_edit_lock','1732728763:1'),
(1540,465,'_wp_attached_file','2024/11/verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a.webp'),
(1541,465,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:113:\"2024/11/verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a.webp\";s:8:\"filesize\";i:1328520;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:97856;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26452;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:639700;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:113:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-100x100.webp\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12530;}s:13:\"entry-cropped\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:879772;}s:23:\"entry-cropped-fullwidth\";a:5:{s:4:\"file\";s:114:\"verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a-1024x671.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:879772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1544,464,'_thumbnail_id','465'),
(1545,466,'_cornerstone_data',NULL),
(1546,466,'_cornerstone_settings',NULL),
(1547,464,'_edit_last','1'),
(1548,464,'_x_entry_body_css_class',''),
(1549,464,'_x_post_layout','off'),
(1550,464,'_x_entry_alternate_index_title',''),
(1551,464,'_x_entry_bg_image_full',''),
(1552,464,'_x_entry_bg_image_full_fade','750'),
(1553,464,'_x_entry_bg_image_full_duration','7500'),
(1554,464,'_x_quote_quote',''),
(1555,464,'_x_quote_cite',''),
(1556,464,'_x_link_url',''),
(1557,464,'_x_video_aspect_ratio','16:9'),
(1558,464,'_x_video_m4v',''),
(1559,464,'_x_video_ogv',''),
(1560,464,'_x_video_embed',''),
(1561,464,'_x_audio_mp3',''),
(1562,464,'_x_audio_ogg',''),
(1563,464,'_x_audio_embed',''),
(1564,452,'_cs_states_cache',''),
(1565,455,'_cs_states_cache',''),
(1566,458,'_cs_states_cache',''),
(1567,461,'_cs_states_cache',''),
(1568,464,'_cs_states_cache',''),
(1569,467,'_cornerstone_data','[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Hero\",\"_m\":{\"e\":1},\"bar_base_font_size\":\"16px\",\"bar_bg_advanced\":true,\"bar_bg_color\":\"rgba(255, 255, 255, 0)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0px\",\"bar_padding\":\"7vw\",\"bar_row_flex_align\":\"stretch\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"9998\",\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"42:full\",\"bg_lower_type\":\"image\",\"css\":\"/*\\n// Notes\\n// -----\\n// The `vw` unit used for absolute positioning\\n// (7vw in this case) must match the padding of\\n// the bar to ensure that the toggle and button\\n// are placed properly into the design. If you\\n// adjust the padding of the bar, make sure that\\n// it matches here and that you adjust the media\\n// query breakpoint accordingly.\\n*/\\n\\n$el.x-bar {\\n  min-height: 100vh;\\n}\\n\\n$el .custom-toggle,\\n$el .custom-button {\\n  position: absolute;\\n}\\n\\n$el .custom-toggle {\\n  top: calc((-7vw / 2) - 2em);\\n  right: calc((-7vw / 2) - 2em);\\n}\\n\\n$el .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw / 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n/*\\n// Notes\\n// -----\\n// To get the best breakpoint value for when the\\n// button and toggle should change positioning,\\n// take the square dimensions of the elements\\n// (64px in this case as their base font size is\\n// 16px with a height and width of 4em) divide\\n// it by the `vw` unit padding of the bar (7vw in\\n// this example) then multiply by 100:\\n// \\n// (64px / 7) * 100 = 914px (rounded down)\\n*/\\n\\n@media (max-width: 914px) {\\n  $el .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  $el .custom-button {\\n    bottom: -7vw;\\n  }\\n}\",\"hide_login\":\"\",\"title\":\"Bar 1\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"container_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"effects_alt\":true,\"effects_animation_alt\":\"flip\",\"effects_duration\":\"500ms\",\"effects_timing_function\":\"ease-in\",\"effects_transform\":\"scale(1)\",\"effects_type_alt\":\"animation\",\"image_bg_color\":\"global-color:DTqAl1J3pKb4jEA7oQ:0\",\"image_retina\":false,\"image_src\":\"87:full\",\"_modules\":[]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-.02em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"2em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"200\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_transform\":\"scale(1)\",\"hide_login\":\"\",\"text_base_font_size\":\"1.1em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Servicing The Hudson Valley\",\"text_content_margin\":\"0px auto 0px auto\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"capitalize\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"40px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.4em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Request a Free Estimate\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Services\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Alternating Features\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"row_box_shadow_dimensions\":\"!0.379em -1em 1.754em -0.009em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_box_shadow_color_alt\":\"transparent\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_object_fit\":\"contain\",\"image_outer_border_radius\":\"!0px\",\"image_src\":\"148:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Highlighting 25+ years of experience, certifications, and skilled craftsmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"25+ Years in Business\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"STO, Dryvit, Parex, Decoplast Certified\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"lg md xl\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em 0em .5em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Emphasizing warranties, fully insured services, and high-quality workmanship.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Fully Insured for Peace of Mind\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Manufacturer &amp; Workmanship Warranties\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"effects_animation_alt\":\"rubberBand\",\"effects_timing_function\":\"ease-in\",\"effects_transform_alt\":\"scale(1)\",\"hide_bp\":\"sm xs\",\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"107:full\",\"image_styled_max_width\":\"580px\",\"image_width\":1600}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"45px auto 0px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_text_align\":\"right\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color_alt\":\"transparent\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color_alt\":\"transparent\",\"image_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"image_height\":800,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"0px\",\"image_padding\":\"0px\",\"image_src\":\"158:full\",\"image_width\":1600},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1vw + 24px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em 0em .5em 0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Focusing on free project planning, tailored solutions, and attention to detail.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.5em 0em 0em 0em\",\"text_max_width\":\"32em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_base_font_size\":\"1.15em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Highlights\",\"text_content_margin\":\"0em 0em .5em 0em\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"0.15em\",\"text_margin\":\"1em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h4\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_text_transform\":\"uppercase\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Complimentary Project Planning- FREE Estimates\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Specializing in New Construction &amp; Renovations\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_graphic_icon_font_size\":\"1.5em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.285em 0.5em 0em 0em\",\"text_line_height\":\"1.6\",\"text_margin\":\"0.25em 0em 0em 0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Estimate Button (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"20px 0px 20px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_base_font_size\":\"1.65em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"https://dev.baselinestucco.com/cornerstone/edit/49\",\"anchor_margin\":\"1.191em 0em 1.191em 0em\",\"anchor_primary_font_weight\":\"fw-bold\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Get Your Free Estimate Today\",\"effects_alt\":true,\"effects_animation_alt\":\"jello\",\"effects_timing_function\":\"ease-in\",\"effects_type_alt\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Works Speak for themselves\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"#f5f5f5\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"65px 0px 40px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Feature Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em 10% 0em 10%\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Our Work Speaks for Itself\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(2vw + 28px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.2\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"hsla(0, 0%, 53%, 0.25)\",\"line_height\":\"50px\",\"line_margin\":\"20px auto 20px auto\",\"line_max_width\":\"14em\",\"line_size\":\"2px\",\"line_width\":\"50%\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.</p>\",\"text_font_size\":\"1.5em\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"40em\",\"text_padding\":\"0em\",\"text_text_color\":\"#888888\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"123:full\",\"image_width\":300},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Friendly Honda Dealership Commericial</p>\",\"_modules\":[]}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"116:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Health Quest Lloyd Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"98:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Five Guys &amp; Chipotle Commericial&nbsp;</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"38:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Hyundai Goshan Commericial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"159:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>Healy Dodge Dealership Commercial</p>\",\"_modules\":[]},{\"_type\":\"gap\",\"_bp_base\":\"4_4\",\"gap_size\":\"1em\",\"hide_bp\":\" lg md xl\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/6\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"image_bg_color\":\"hsl(0, 0%, 100%)\",\"image_bg_color_alt\":\"hsl(0, 0%, 100%)\",\"image_border_color_alt\":\"transparent\",\"image_border_width\":\"0px\",\"image_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_color_alt\":\"hsla(0, 0%, 0%, 0.2)\",\"image_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"image_height\":300,\"image_inner_border_radius\":\"3px\",\"image_margin\":\"0px\",\"image_outer_border_radius\":\"4px\",\"image_padding\":\"4px\",\"image_src\":\"160:full\",\"image_width\":300},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"text_content\":\"<p>LaGrange Farms Residential</p>\",\"_modules\":[]}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Block Highlights\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_bp\":\"lg md sm xl xs\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"0px 0px 0px 0px\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Marginless Columns\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_margin\":\"0px auto 0px auto\",\"row_marginless_columns\":true,\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:secondary\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Built on Expertise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>25+ Years in Business</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>STO, Dryvit, Parex, Decoplast Certified</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Committed to Quality\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Fully Insured for Peace of Mind</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Manufacturer &amp; Workmanship Warranties</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"calc(2vw + 25px)\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/3\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Your Vision, Our Promise\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1.25vw + 21px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>Complimentary Project Planning- FREE Estimates</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"},{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_color\":\"hsla(0, 0%, 0%, 0)\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>New Construction &amp; Renovations</p>\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.6\",\"text_margin\":\"1em auto 0em auto\",\"text_max_width\":\"24rem\",\"text_padding\":\"0em\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"standard\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Typing Tagline (1)\",\"_m\":{\"e\":2},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"section_border_color\":\"rgba(0,0,0,0.1) transparent hsla(0,0%,0%,0.1) transparent\",\"section_border_style\":\"solid none solid none\",\"section_border_width\":\"1px 0px 1px 0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_padding\":\"45px 0px 45px 0px\",\"section_text_align\":\"center\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"title\":\"Attention Getter\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"I\'m back! Aren\'t you amazed by my typing skills?\",\"text_content_margin\":\"0px\",\"text_font_size\":\"calc(1vw + 18px)\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.025em\",\"text_line_height\":\"1.25\",\"text_margin\":\"0em auto 0em auto\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing\":true,\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_color\":\"global-color:primary\",\"text_typing_content\":\"Finish,\\nTexture,\\nAesthetic,\",\"text_typing_cursor_color\":\"global-color:primary\",\"text_typing_prefix\":\"Strength In Every \",\"text_typing_speed\":\"50ms\",\"text_typing_suffix\":\"Pride In Every Detail.\"}]}]}]},{\"_type\":\"section\",\"_bp_base\":\"4_4\",\"_label\":\"Commercial/Residentail\",\"_m\":{\"e\":2},\"_order\":0,\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"section_bg_color\":\"hsl(0, 0%, 100%)\",\"section_border_style\":\"none\",\"section_border_width\":\"0px\",\"section_bottom_separator_location\":\"bottom\",\"section_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"section_margin\":\"0em\",\"section_top_separator_location\":\"top\",\"section_z_index\":\"1\",\"_modules\":[{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"0em auto 0em auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"column_border_radius\":\"0px 0px 0px 0px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"column_padding\":\"0em\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"hide_login\":\"\",\"text_base_font_size\":\"calc(1.5vw + 28px)\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Tailored Stucco Solutions for Every Project\",\"text_font_size\":\"1.1em\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1.05\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"Whether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\",\"text_subheadline_font_size\":\"0.5em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_line_height\":\"1.25\",\"text_subheadline_spacing\":\"0.25em\",\"text_subheadline_tag\":\"p\",\"text_subheadline_text_align\":\"center\",\"text_subheadline_text_color\":\"#888888\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h2\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"}]}]},{\"_type\":\"row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"class\":\"plans\",\"hide_login\":\"\",\"row_border_radius\":\"0px\",\"row_border_style\":\"none\",\"row_border_width\":\"0px\",\"row_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"row_inner_container\":true,\"row_margin\":\"35px auto 35px auto\",\"row_padding\":\"0em\",\"row_z_index\":\"1\",\"_modules\":[{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"291:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Commerical\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:4c696e6b\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/commercial/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"Explore Commercial Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]},{\"_type\":\"column\",\"_active\":true,\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"bg_border_radius\":\"inherit\",\"bg_lower_image\":\"337:full\",\"bg_lower_type\":\"image\",\"column_bg_advanced\":true,\"column_bg_color\":\"hsl(0, 0%, 100%)\",\"column_border_radius\":\"3px\",\"column_border_style\":\"none\",\"column_border_width\":\"0px\",\"column_box_shadow_color\":\"rgba(0, 0, 0, 0.2)\",\"column_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"column_padding\":\"30px 20px 20px 20px\",\"column_z_index\":\"1\",\"hide_login\":\"\",\"size\":\"1/2\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_order\":0,\"class\":\"price\",\"hide_login\":\"\",\"text_base_font_size\":\"2.75em\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Residential\",\"text_content_margin\":\"0px\",\"text_font_weight\":\"700\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_letter_spacing\":\"-0.015em\",\"text_line_height\":\"1\",\"text_margin\":\"0px 0px 30px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h3\",\"text_text_align\":\"center\",\"text_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"text_text_shadow_color\":\"global-color:d5OcSiPv75yItABYW7\",\"text_text_shadow_dimensions\":\"4px 4px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Some features might be short\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"hide_login\":\"\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Whereas you may discover that other features take longer to fully describe\",\"text_content_margin\":\"0px\",\"text_flex_align\":\"flex-start\",\"text_font_weight\":\"400\",\"text_graphic\":true,\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"check-circle\",\"text_graphic_icon_border_color_alt\":\"transparent\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_color\":\"rgba(0, 0, 0, 0)\",\"text_graphic_icon_font_size\":\"1em\",\"text_graphic_icon_height\":\"1em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_icon_width\":\"1em\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_graphic_margin\":\"0.2em 0.5em 0em 0em\",\"text_margin\":\"0px 0px 15px 0px\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"p\",\"text_text_color\":\"#88888800\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\"},{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"anchor_bg_color\":\"global-color:tVcoR2z4jLtc2oTKy2\",\"anchor_bg_color_alt\":\"rgba(255, 255, 255, 1)\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"3px\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color\":\"hsla(0, 0%, 0%, 0.2)\",\"anchor_box_shadow_color_alt\":\"rgba(0, 0, 0, 0.2)\",\"anchor_box_shadow_dimensions\":\"0em 0.15em 0.5em 0em\",\"anchor_graphic_icon\":\"hand-pointer-o\",\"anchor_graphic_icon_alt\":\"hand-spock-o\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_href\":\"https://dev.baselinestucco.com/residential/\",\"anchor_margin\":\"0em\",\"anchor_primary_font_weight\":\"700\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:primary\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_text_primary_content\":\"View Residential Projects\",\"anchor_width\":\"100%\",\"hide_login\":\"\"}]}]}]}]'),
(1570,467,'_cornerstone_settings','{\"customCSS\":\"\",\"customJS\":\"\",\"layoutSingle\":\"default\",\"layoutHeader\":\"default\",\"layoutFooter\":\"default\",\"responsive_text\":[]}'),
(1571,2,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"bar\":[\"m2-0\"],\"dynamic-content\":[]},\"el:e3\":{\"effects\":[\"m2-1\",\"m2-2\",\"m2-3\",\"m2-4\"],\"image\":[\"m2-7\",\"m2-8\",\"m2-9\"],\"dynamic-content\":[]},\"el:e8\":{\"effects\":[\"m2-1\"],\"text-headline\":[\"m2-1f\",\"m2-1j\",\"m2-1n\",\"m2-1o\",\"m2-1p\",\"m2-1q\",\"m2-1r\",\"m2-1s\",\"m2-1t\"],\"dynamic-content\":[]},\"el:e9\":{\"effects\":[\"m2-1\"],\"text-headline\":[\"m2-1f\",\"m2-1j\",\"m2-1n\",\"m2-1o\",\"m2-1p\",\"m2-1r\",\"m2-1s\",\"m2-1u\",\"m2-1v\"],\"dynamic-content\":[]},\"el:e13\":{\"effects\":[\"m2-3\",\"m2-4\",\"m2-5\"],\"anchor\":[\"m2-2k\",\"m2-2l\",\"m2-2m\",\"m2-2n\"],\"dynamic-content\":[]},\"el:e27\":{\"effects\":[\"m2-3\"],\"image\":[\"m2-7\",\"m2-8\",\"m2-a\",\"m2-b\",\"m2-d\"],\"dynamic-content\":[]},\"el:e36\":{\"effects\":[\"m2-3\"],\"image\":[\"m2-7\",\"m2-8\",\"m2-a\",\"m2-b\",\"m2-d\"],\"dynamic-content\":[]},\"el:e50\":{\"effects\":[\"m2-3\",\"m2-4\",\"m2-5\"],\"anchor\":[\"m2-2k\",\"m2-2l\",\"m2-2n\",\"m2-2o\"],\"dynamic-content\":[]},\"el:e2\":{\"container\":[\"m2-6\"],\"dynamic-content\":[]},\"el:e17\":{\"image\":[\"m2-7\",\"m2-8\",\"m2-a\",\"m2-b\",\"m2-c\"],\"dynamic-content\":[]},\"el:e39\":{\"image\":[\"m2-7\",\"m2-8\",\"m2-a\",\"m2-b\"],\"dynamic-content\":[]},\"el:e59\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e63\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e67\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e71\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e75\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e79\":{\"image\":[\"m2-7\",\"m2-b\",\"m2-e\"],\"dynamic-content\":[]},\"el:e4\":{\"section\":[\"m2-f\",\"m2-g\",\"m2-h\",\"m2-i\",\"m2-j\",\"m2-k\"],\"dynamic-content\":[]},\"el:e10\":{\"section\":[\"m2-f\",\"m2-g\",\"m2-j\",\"m2-l\",\"m2-m\",\"m2-n\"],\"dynamic-content\":[]},\"el:e14\":{\"section\":[\"m2-f\",\"m2-h\",\"m2-i\",\"m2-o\",\"m2-p\"],\"dynamic-content\":[]},\"el:e47\":{\"section\":[\"m2-f\",\"m2-g\",\"m2-j\",\"m2-n\",\"m2-q\"],\"dynamic-content\":[]},\"el:e51\":{\"section\":[\"m2-f\",\"m2-h\",\"m2-j\",\"m2-m\",\"m2-o\",\"m2-r\"],\"dynamic-content\":[]},\"el:e81\":{\"section\":[\"m2-f\",\"m2-o\",\"m2-s\",\"m2-t\"],\"dynamic-content\":[]},\"el:e95\":{\"section\":[\"m2-f\",\"m2-g\",\"m2-j\",\"m2-k\",\"m2-u\"],\"dynamic-content\":[]},\"el:e99\":{\"section\":[\"m2-f\",\"m2-h\",\"m2-i\",\"m2-o\",\"m2-t\"],\"dynamic-content\":[]},\"el:e5\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e11\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e15\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e48\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e52\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-10\"],\"dynamic-content\":[]},\"el:e96\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e100\":{\"classic-row-v2\":[\"m2-v\",\"m2-w\",\"m2-x\"],\"dynamic-content\":[]},\"el:e25\":{\"classic-row-v2\":[\"m2-w\",\"m2-x\",\"m2-y\",\"m2-z\"],\"dynamic-content\":[]},\"el:e37\":{\"classic-row-v2\":[\"m2-w\",\"m2-x\",\"m2-y\",\"m2-z\"],\"dynamic-content\":[]},\"el:e57\":{\"classic-row-v2\":[\"m2-w\",\"m2-x\",\"m2-11\"],\"dynamic-content\":[]},\"el:e82\":{\"classic-row-v2\":[\"m2-w\",\"m2-x\",\"m2-z\",\"m2-12\"],\"dynamic-content\":[]},\"el:e103\":{\"classic-row-v2\":[\"m2-w\",\"m2-x\",\"m2-11\"],\"dynamic-content\":[]},\"el:e6\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e12\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e16\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\",\"m2-16\"],\"dynamic-content\":[]},\"el:e19\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e26\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e35\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e38\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\",\"m2-16\"],\"dynamic-content\":[]},\"el:e41\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e49\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e53\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e58\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e62\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e66\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e70\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e74\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e78\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e83\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-17\",\"m2-18\"],\"dynamic-content\":[]},\"el:e87\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-17\",\"m2-19\"],\"dynamic-content\":[]},\"el:e91\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-17\",\"m2-1a\"],\"dynamic-content\":[]},\"el:e97\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e101\":{\"classic-column-v2\":[\"m2-13\",\"m2-14\",\"m2-15\"],\"dynamic-content\":[]},\"el:e104\":{\"classic-column-v2\":[\"m2-13\",\"m2-1b\"],\"dynamic-content\":[]},\"el:e112\":{\"classic-column-v2\":[\"m2-13\",\"m2-1b\"],\"dynamic-content\":[]},\"el:e7\":{\"text-headline\":[\"m2-1c\",\"m2-1d\",\"m2-1e\",\"m2-1f\",\"m2-1g\",\"m2-1h\",\"m2-1i\",\"m2-1j\",\"m2-1k\",\"m2-1l\",\"m2-1m\"],\"dynamic-content\":[]},\"el:e29\":{\"text-headline\":[\"m2-1c\",\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1u\",\"m2-1x\",\"m2-1y\",\"m2-1z\",\"m2-20\",\"m2-21\",\"m2-23\",\"m2-28\"],\"dynamic-content\":[]},\"el:e84\":{\"text-headline\":[\"m2-1c\",\"m2-1d\",\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1t\",\"m2-1u\",\"m2-2c\",\"m2-2d\",\"m2-2e\"],\"dynamic-content\":[]},\"el:e88\":{\"text-headline\":[\"m2-1c\",\"m2-1d\",\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1t\",\"m2-1u\",\"m2-2c\",\"m2-2d\",\"m2-2e\"],\"dynamic-content\":[]},\"el:e92\":{\"text-headline\":[\"m2-1c\",\"m2-1d\",\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1t\",\"m2-1u\",\"m2-2c\",\"m2-2d\",\"m2-2e\"],\"dynamic-content\":[]},\"el:e98\":{\"text-headline\":[\"m2-1c\",\"m2-1d\",\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1j\",\"m2-1k\",\"m2-1l\",\"m2-1m\",\"m2-1o\",\"m2-1s\",\"m2-1u\"],\"dynamic-content\":[]},\"el:e22\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1i\",\"m2-1r\",\"m2-1w\",\"m2-21\",\"m2-22\",\"m2-23\",\"m2-24\",\"m2-25\"],\"dynamic-content\":[]},\"el:e23\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e24\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e31\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1i\",\"m2-1r\",\"m2-1w\",\"m2-21\",\"m2-22\",\"m2-23\",\"m2-24\",\"m2-25\"],\"dynamic-content\":[]},\"el:e32\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e33\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e44\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1o\",\"m2-1r\",\"m2-21\",\"m2-22\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-2a\"],\"dynamic-content\":[]},\"el:e45\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e46\":{\"text-headline\":[\"m2-1e\",\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-20\",\"m2-23\",\"m2-24\",\"m2-25\",\"m2-26\",\"m2-27\"],\"dynamic-content\":[]},\"el:e20\":{\"text-headline\":[\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1n\",\"m2-1u\",\"m2-1w\",\"m2-1x\",\"m2-1y\",\"m2-1z\",\"m2-20\",\"m2-21\"],\"dynamic-content\":[]},\"el:e42\":{\"text-headline\":[\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1n\",\"m2-1u\",\"m2-1w\",\"m2-1x\",\"m2-1y\",\"m2-1z\",\"m2-20\",\"m2-29\"],\"dynamic-content\":[]},\"el:e54\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1n\",\"m2-1o\",\"m2-1s\",\"m2-1u\",\"m2-21\",\"m2-2b\"],\"dynamic-content\":[]},\"el:e102\":{\"text-headline\":[\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1n\",\"m2-1o\",\"m2-1u\",\"m2-1z\",\"m2-21\",\"m2-2e\",\"m2-2f\",\"m2-2g\"],\"dynamic-content\":[]},\"el:e105\":{\"text-headline\":[\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1m\",\"m2-1o\",\"m2-1u\",\"m2-1y\",\"m2-2d\",\"m2-2e\",\"m2-2g\",\"m2-2h\",\"m2-2i\"],\"dynamic-content\":[]},\"el:e106\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e107\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e108\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e109\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e110\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e113\":{\"text-headline\":[\"m2-1f\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1u\",\"m2-1v\",\"m2-1y\",\"m2-2d\",\"m2-2e\",\"m2-2g\",\"m2-2h\",\"m2-2i\"],\"dynamic-content\":[]},\"el:e114\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e115\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e116\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e117\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e118\":{\"text-headline\":[\"m2-1f\",\"m2-1h\",\"m2-1i\",\"m2-1l\",\"m2-1o\",\"m2-1r\",\"m2-1y\",\"m2-20\",\"m2-25\",\"m2-27\",\"m2-2h\",\"m2-2j\"],\"dynamic-content\":[]},\"el:e111\":{\"anchor\":[\"m2-2l\",\"m2-2p\",\"m2-2q\"],\"dynamic-content\":[]},\"el:e119\":{\"anchor\":[\"m2-2l\",\"m2-2n\",\"m2-2p\"],\"dynamic-content\":[]},\"el:e18\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e28\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e34\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e40\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e60\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e65\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e69\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e73\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e77\":{\"gap\":[\"m2-2r\"],\"dynamic-content\":[]},\"el:e21\":{\"text-standard\":[\"m2-2s\",\"m2-2t\",\"m2-2u\",\"m2-2v\"],\"dynamic-content\":[]},\"el:e30\":{\"text-standard\":[\"m2-2s\",\"m2-2t\",\"m2-2u\",\"m2-2v\"],\"dynamic-content\":[]},\"el:e43\":{\"text-standard\":[\"m2-2s\",\"m2-2t\",\"m2-2u\",\"m2-2v\"],\"dynamic-content\":[]},\"el:e56\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2v\",\"m2-2w\",\"m2-2x\"],\"dynamic-content\":[]},\"el:e85\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e86\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e89\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e90\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e93\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e94\":{\"text-standard\":[\"m2-2t\",\"m2-2u\",\"m2-2x\",\"m2-2z\",\"m2-30\"],\"dynamic-content\":[]},\"el:e61\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e64\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e68\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e72\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e76\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e80\":{\"text-standard\":[\"m2-2u\",\"m2-2y\",\"m2-2z\"],\"dynamic-content\":[]},\"el:e55\":{\"line\":[\"m2-31\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m2-0.x-bar{height:auto;padding-top:7vw;padding-right:7vw;padding-bottom:7vw;padding-left:7vw;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:16px;background-color:rgba(255, 255, 255, 0);z-index:9998;} .m2-0 .x-bar-content{display:flex;flex-direction:row;justify-content:center;align-items:stretch;flex-grow:0;flex-shrink:1;flex-basis:100%;height:auto;} .m2-0.x-bar-outer-spacers:after,.m2-0.x-bar-outer-spacers:before{flex-basis:0px;width:0px!important;height:0px;} .m2-0.x-bar-space{font-size:16px;} .m2-1{transform:scale(1);} .m2-2{transition-duration:500ms;} .m2-3{transition-timing-function:ease-in;} :where(body:not(.tco-disable-effects)) .m2-4:hover,:where(body:not(.tco-disable-effects)) [data-x-effect-provider*=\\\"effects\\\"]:hover .m2-4{opacity:1;} .m2-5 .x-anchor-text-primary {transition-timing-function:ease-in;} .m2-5 .x-anchor-text-secondary {transition-timing-function:ease-in;} .m2-5 .x-graphic-child {transition-timing-function:ease-in;} .m2-6.x-bar-container{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-grow:0;flex-shrink:1;flex-basis:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;background-color:%%post tss-color%%global-color:DTqAl1J3pKb4jEA7oQ:0%%\\/post%%;z-index:1;} .m2-7.x-image{font-size:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m2-9.x-image{background-color:%%post tss-color%%global-color:DTqAl1J3pKb4jEA7oQ:0%%\\/post%%;} .m2-a.x-image{background-color:transparent;} .m2-b.x-image img{border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;} .m2-c.x-image img{object-fit:contain;} .m2-d.x-image{max-width:580px;} .m2-e.x-image{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;background-color:hsl(0, 0%, 100%);box-shadow:0em 0.15em 0.5em 0em hsla(0, 0%, 0%, 0.2);} .m2-f.x-section{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-right:0px;padding-left:0px;z-index:1;} .m2-g.x-section{border-top-width:1px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;border-top-style:solid;border-right-style:none;border-bottom-style:solid;border-left-style:none;border-top-color:rgba(0,0,0,0.1);border-right-color:transparent;border-bottom-color:hsla(0,0%,0%,0.1);border-left-color:transparent;} .m2-h.x-section{padding-top:65px;} .m2-i.x-section{padding-bottom:65px;} .m2-j.x-section{text-align:center;} .m2-k.x-section{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m2-l.x-section{padding-top:40px;} .m2-m.x-section{padding-bottom:40px;} .m2-n.x-section{background-color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m2-o.x-section{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m2-p.x-section{background-color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m2-q.x-section{padding-top:20px;padding-bottom:20px;} .m2-r.x-section{background-color:#f5f5f5;} .m2-s.x-section{padding-top:0px;padding-bottom:0px;} .m2-t.x-section{background-color:hsl(0, 0%, 100%);} .m2-u.x-section{padding-top:45px;padding-bottom:45px;} .m2-v.x-container{margin-top:0em;margin-bottom:0em;} .m2-w.x-container{margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;box-shadow:none;z-index:1;} .m2-y.x-container{margin-top:45px;} .m2-z.x-container{margin-bottom:0px;} .m2-10.x-container{padding-top:0em;padding-right:10%;padding-bottom:0em;padding-left:10%;} .m2-11.x-container{margin-top:35px;margin-bottom:35px;} .m2-12.x-container{margin-top:0px;} .m2-13.x-column{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;z-index:1;} .m2-14.x-column{box-shadow:none;} .m2-16.x-column{text-align:right;} .m2-17.x-column{padding-top:calc(2vw + 25px);padding-right:calc(2vw + 25px);padding-bottom:calc(2vw + 25px);padding-left:calc(2vw + 25px);} .m2-18.x-column{background-color:%%post tss-color%%global-color:secondary%%\\/post%%;} .m2-19.x-column{background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;} .m2-1a.x-column{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m2-1b.x-column{border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;padding-top:30px;padding-right:20px;padding-bottom:20px;padding-left:20px;background-color:hsl(0, 0%, 100%);box-shadow:0em 0.15em 0.5em 0em rgba(0, 0, 0, 0.2);} .m2-1c.x-text{margin-top:0em;} .m2-1d.x-text{margin-right:auto;margin-left:auto;} .m2-1e.x-text{margin-bottom:0em;} .m2-1f.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m2-1f.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;} .m2-1g.x-text{padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em;} .m2-1g.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|500%%\\/post%%;letter-spacing:-0.02em;margin-right:calc(-0.02em * -1);} .m2-1h.x-text{font-size:1em;} .m2-1j.x-text .x-text-content-text-primary{font-size:calc(1vw + 18px);} .m2-1k.x-text .x-text-content-text-primary{line-height:1.25;} .m2-1k.x-text .x-text-typing{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m2-1k.x-text .x-typed-cursor{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m2-1l.x-text .x-text-content-text-primary{text-transform:none;} .m2-1m.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m2-1p.x-text{font-size:1.1em;} .m2-1p.x-text .x-text-content-text{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;} .m2-1p.x-text .x-text-content-text-primary{text-transform:capitalize;} .m2-1q.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|200%%\\/post%%;} .m2-1r.x-text .x-text-content-text-primary{line-height:1.4;} .m2-1s.x-text .x-text-content-text-primary{letter-spacing:-0.025em;margin-right:calc(-0.025em * -1);} .m2-1t.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m2-1u.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|700%%\\/post%%;} .m2-1v.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m2-1w.x-text{padding-top:0em;padding-right:0em;padding-bottom:.5em;padding-left:0em;} .m2-1x.x-text{font-size:calc(1vw + 24px);} .m2-1y.x-text .x-text-content-text-primary{font-size:1em;} .m2-1z.x-text .x-text-content-text-primary{line-height:1.05;} .m2-20.x-text .x-text-content-text-primary{letter-spacing:0em;} .m2-21.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m2-22.x-text{margin-top:1em;font-size:1.15em;} .m2-22.x-text .x-text-content-text-primary{letter-spacing:0.15em;margin-right:calc(0.15em * -1);text-transform:uppercase;} .m2-23.x-text{margin-right:0em;margin-left:0em;} .m2-24.x-text .x-text-content-text-primary{font-size:1.5em;} .m2-25.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|400%%\\/post%%;} .m2-26.x-text{margin-top:0.25em;} .m2-26.x-text .x-text-content-text-primary{line-height:1.6;color:#888888;} .m2-26.x-text .x-graphic {margin-top:0.285em;} .m2-26.x-text .x-graphic-icon {font-size:1.5em;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m2-27.x-text .x-text-content{display:flex;flex-direction:row;justify-content:center;align-items:flex-start;} .m2-27.x-text .x-graphic {margin-right:0.5em;margin-bottom:0em;margin-left:0em;} .m2-27.x-text .x-graphic-icon {width:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;height:1em;line-height:1em;} .m2-28.x-text{margin-bottom:.5em;} .m2-29.x-text .x-text-content-text-primary{color:rgba(0, 0, 0, 1);} .m2-2a.x-text .x-text-content-text{margin-top:0em;margin-right:0em;margin-bottom:.5em;margin-left:0em;} .m2-2b.x-text .x-text-content-text-primary{font-size:calc(2vw + 28px);line-height:1.2;} .m2-2c.x-text{max-width:24rem;} .m2-2c.x-text .x-text-content-text-primary{font-size:calc(1.25vw + 21px);} .m2-2d.x-text .x-text-content-text-primary{line-height:1;} .m2-2e.x-text .x-text-content-text-primary{letter-spacing:-0.015em;margin-right:calc(-0.015em * -1);} .m2-2f.x-text{font-size:calc(1.5vw + 28px);} .m2-2f.x-text .x-text-content-text-primary{font-size:1.1em;} .m2-2f.x-text .x-text-content-text-subheadline{margin-top:0.25em;font-family:inherit;font-size:0.5em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.25;letter-spacing:0em;text-align:center;text-transform:none;color:#888888;} .m2-2g.x-text .x-text-content-text-primary{text-align:center;} .m2-2h.x-text{margin-top:0px;margin-right:0px;margin-left:0px;} .m2-2i.x-text{margin-bottom:30px;font-size:2.75em;} .m2-2i.x-text .x-text-content-text-primary{text-shadow:4px 4px 0px %%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m2-2j.x-text{margin-bottom:15px;} .m2-2j.x-text .x-text-content-text-primary{color:#88888800;} .m2-2j.x-text .x-graphic {margin-top:0.2em;} .m2-2j.x-text .x-graphic-icon {font-size:1em;color:rgba(0, 0, 0, 0);} .m2-2k.x-anchor {margin-top:1.191em;margin-right:0em;margin-bottom:1.191em;margin-left:0em;border-top-left-radius:0.35em;border-top-right-radius:0.35em;border-bottom-right-radius:0.35em;border-bottom-left-radius:0.35em;background-color:%%post tss-color%%global-color:primary%%\\/post%%;box-shadow:0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);} .m2-2k.x-anchor .x-anchor-text-primary {font-weight:%%post tss-fw%%inherit|fw-bold%%\\/post%%;} .m2-2k.x-anchor:hover .x-anchor-text-primary,.m2-2k.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m2-2k.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m2-2l.x-anchor {border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m2-2l.x-anchor .x-anchor-content {display:flex;flex-direction:row;justify-content:center;align-items:center;padding-top:0.575em;padding-right:0.85em;padding-bottom:0.575em;padding-left:0.85em;} .m2-2l.x-anchor .x-anchor-text {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m2-2l.x-anchor .x-anchor-text-primary {font-family:inherit;font-size:1em;font-style:normal;line-height:1;text-transform:uppercase;} .m2-2m.x-anchor {font-size:1.4em;} .m2-2n.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m2-2o.x-anchor {font-size:1.65em;} .m2-2p.x-anchor {width:100%;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;font-size:1em;background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;box-shadow:0em 0.15em 0.5em 0em hsla(0, 0%, 0%, 0.2);} .m2-2p.x-anchor:hover,.m2-2p.x-anchor[class*=\\\"active\\\"],[data-x-effect-provider*=\\\"colors\\\"]:hover .m2-2p.x-anchor {background-color:rgba(255, 255, 255, 1);box-shadow:0em 0.15em 0.5em 0em rgba(0, 0, 0, 0.2);} .m2-2p.x-anchor .x-anchor-text-primary {font-weight:%%post tss-fw%%inherit|700%%\\/post%%;} .m2-2p.x-anchor:hover .x-anchor-text-primary,.m2-2p.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m2-2p.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:primary%%\\/post%%;} .m2-2q.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m2-2r{padding-top:1em;padding-right:0;padding-bottom:0;padding-left:0;font-size:1em;} .m2-2s.x-text{max-width:32em;margin-top:0.5em;margin-right:0em;margin-left:0em;} .m2-2t.x-text{margin-bottom:0em;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.6;} .m2-2u.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-family:inherit;font-style:normal;letter-spacing:0em;text-transform:none;} .m2-2u.x-text > :first-child{margin-top:0;} .m2-2u.x-text > :last-child{margin-bottom:0;} .m2-2v.x-text{font-size:1.5em;color:#888888;} .m2-2w.x-text{max-width:40em;margin-top:0em;} .m2-2x.x-text{margin-right:auto;margin-left:auto;} .m2-2y.x-text{font-weight:inherit;line-height:inherit;color:rgba(0, 0, 0, 1);} .m2-2z.x-text{font-size:1em;} .m2-30.x-text{max-width:24rem;margin-top:1em;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m2-31{width:50%;max-width:14em;margin-top:20px;margin-right:auto;margin-bottom:20px;margin-left:auto;border-top-width:2px;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:hsla(0, 0%, 53%, 0.25);border-right-color:hsla(0, 0%, 53%, 0.25);border-bottom-color:hsla(0, 0%, 53%, 0.25);border-left-color:hsla(0, 0%, 53%, 0.25);font-size:1em;}\",\"element_css\":\"\\/*\\n\\/\\/ Notes\\n\\/\\/ -----\\n\\/\\/ The `vw` unit used for absolute positioning\\n\\/\\/ (7vw in this case) must match the padding of\\n\\/\\/ the bar to ensure that the toggle and button\\n\\/\\/ are placed properly into the design. If you\\n\\/\\/ adjust the padding of the bar, make sure that\\n\\/\\/ it matches here and that you adjust the media\\n\\/\\/ query breakpoint accordingly.\\n*\\/\\n\\n.e2-e1.x-bar {\\n  min-height: 100vh;\\n}\\n\\n.e2-e1 .custom-toggle,\\n.e2-e1 .custom-button {\\n  position: absolute;\\n}\\n\\n.e2-e1 .custom-toggle {\\n  top: calc((-7vw \\/ 2) - 2em);\\n  right: calc((-7vw \\/ 2) - 2em);\\n}\\n\\n.e2-e1 .custom-button {\\n  left: 0;\\n  right: 0;\\n  bottom: calc((-7vw \\/ 2) - 2em);\\n  margin: 0 auto 0 !important;\\n}\\n\\n\\n\\/*\\n\\/\\/ Notes\\n\\/\\/ -----\\n\\/\\/ To get the best breakpoint value for when the\\n\\/\\/ button and toggle should change positioning,\\n\\/\\/ take the square dimensions of the elements\\n\\/\\/ (64px in this case as their base font size is\\n\\/\\/ 16px with a height and width of 4em) divide\\n\\/\\/ it by the `vw` unit padding of the bar (7vw in\\n\\/\\/ this example) then multiply by 100:\\n\\/\\/ \\n\\/\\/ (64px \\/ 7) * 100 = 914px (rounded down)\\n*\\/\\n\\n@media (max-width: 914px) {\\n  .e2-e1 .custom-toggle {\\n    top: -7vw;\\n    right: -7vw;\\n  }\\n\\n  .e2-e1 .custom-button {\\n    bottom: -7vw;\\n  }\\n}                                                                                                                      \"}}'),
(1572,320,'_cs_generated_tss','{\"v\":{\"containers\":{\"el:e1\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-3\",\"m8w-4\",\"m8w-5\",\"m8w-6\",\"m8w-7\"],\"dynamic-content\":[]},\"el:e5\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-7\",\"m8w-8\",\"m8w-9\"],\"dynamic-content\":[]},\"el:e25\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-7\",\"m8w-8\",\"m8w-d\",\"m8w-e\",\"m8w-f\"],\"dynamic-content\":[]},\"el:e43\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-h\",\"m8w-i\",\"m8w-j\"],\"dynamic-content\":[]},\"el:e123\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-h\",\"m8w-j\",\"m8w-m\",\"m8w-n\"],\"dynamic-content\":[]},\"el:e138\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-d\",\"m8w-h\",\"m8w-j\",\"m8w-n\"],\"dynamic-content\":[]},\"el:e173\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-h\",\"m8w-i\",\"m8w-j\"],\"dynamic-content\":[]},\"el:e184\":{\"section\":[\"m8w-0\",\"m8w-1\",\"m8w-2\",\"m8w-3\",\"m8w-4\",\"m8w-7\",\"m8w-c\"],\"dynamic-content\":[]},\"el:e68\":{\"section\":[\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-d\",\"m8w-e\",\"m8w-h\",\"m8w-j\",\"m8w-k\"],\"dynamic-content\":[]},\"el:e83\":{\"section\":[\"m8w-1\",\"m8w-2\",\"m8w-4\",\"m8w-8\",\"m8w-h\",\"m8w-i\",\"m8w-j\",\"m8w-k\"],\"dynamic-content\":[]},\"el:e108\":{\"section\":[\"m8w-1\",\"m8w-4\",\"m8w-8\",\"m8w-h\",\"m8w-j\",\"m8w-l\"],\"dynamic-content\":[]},\"el:e20\":{\"section\":[\"m8w-3\",\"m8w-4\",\"m8w-7\",\"m8w-a\",\"m8w-b\",\"m8w-c\"],\"dynamic-content\":[]},\"el:e39\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e64\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e79\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e104\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e119\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e134\":{\"section\":[\"m8w-4\",\"m8w-8\",\"m8w-d\",\"m8w-e\",\"m8w-h\",\"m8w-o\"],\"dynamic-content\":[]},\"el:e169\":{\"section\":[\"m8w-4\",\"m8w-6\",\"m8w-8\",\"m8w-b\",\"m8w-d\",\"m8w-e\",\"m8w-g\",\"m8w-h\"],\"dynamic-content\":[]},\"el:e23\":{\"effects\":[\"m8w-p\"],\"anchor\":[\"m8w-1t\",\"m8w-1u\"],\"dynamic-content\":[]},\"el:e187\":{\"effects\":[\"m8w-p\"],\"anchor\":[\"m8w-1t\",\"m8w-1v\"],\"dynamic-content\":[]},\"el:e24\":{\"effects\":[\"m8w-q\"],\"text-headline\":[\"m8w-13\",\"m8w-14\",\"m8w-15\",\"m8w-19\",\"m8w-1a\"],\"dynamic-content\":[]},\"el:e2\":{\"classic-row-v2\":[\"m8w-r\",\"m8w-s\"],\"dynamic-content\":[]},\"el:e6\":{\"classic-row-v2\":[\"m8w-r\",\"m8w-s\"],\"dynamic-content\":[]},\"el:e13\":{\"classic-row-v2\":[\"m8w-r\",\"m8w-s\"],\"dynamic-content\":[]},\"el:e21\":{\"classic-row-v2\":[\"m8w-r\",\"m8w-s\"],\"dynamic-content\":[]},\"el:e185\":{\"classic-row-v2\":[\"m8w-r\",\"m8w-s\"],\"dynamic-content\":[]},\"el:e26\":{\"classic-row-v2\":[\"m8w-s\",\"m8w-t\"],\"dynamic-content\":[]},\"el:e3\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e7\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e10\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\",\"m8w-w\"],\"dynamic-content\":[]},\"el:e14\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e16\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e18\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e22\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e27\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-x\",\"m8w-y\"],\"dynamic-content\":[]},\"el:e31\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-x\",\"m8w-z\"],\"dynamic-content\":[]},\"el:e35\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-x\",\"m8w-10\"],\"dynamic-content\":[]},\"el:e186\":{\"classic-column-v2\":[\"m8w-u\",\"m8w-v\"],\"dynamic-content\":[]},\"el:e4\":{\"text-headline\":[\"m8w-11\",\"m8w-12\",\"m8w-13\",\"m8w-14\",\"m8w-15\",\"m8w-16\"],\"dynamic-content\":[]},\"el:e28\":{\"text-headline\":[\"m8w-11\",\"m8w-12\",\"m8w-13\",\"m8w-14\",\"m8w-18\",\"m8w-1a\",\"m8w-1b\"],\"dynamic-content\":[]},\"el:e32\":{\"text-headline\":[\"m8w-11\",\"m8w-12\",\"m8w-13\",\"m8w-14\",\"m8w-18\",\"m8w-1a\",\"m8w-1b\"],\"dynamic-content\":[]},\"el:e36\":{\"text-headline\":[\"m8w-11\",\"m8w-12\",\"m8w-13\",\"m8w-14\",\"m8w-18\",\"m8w-1a\",\"m8w-1b\"],\"dynamic-content\":[]},\"el:e8\":{\"text-headline\":[\"m8w-12\",\"m8w-13\",\"m8w-17\",\"m8w-18\"],\"dynamic-content\":[]},\"el:e9\":{\"text-standard\":[\"m8w-1c\",\"m8w-1d\",\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1h\",\"m8w-1i\"],\"dynamic-content\":[]},\"el:e12\":{\"text-standard\":[\"m8w-1d\",\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1h\",\"m8w-1i\",\"m8w-1j\"],\"dynamic-content\":[]},\"el:e29\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e30\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e33\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e34\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e37\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e38\":{\"text-standard\":[\"m8w-1e\",\"m8w-1f\",\"m8w-1g\",\"m8w-1k\"],\"dynamic-content\":[]},\"el:e42\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e67\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e82\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e107\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e122\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e137\":{\"text-standard\":[\"m8w-1f\",\"m8w-1g\",\"m8w-1h\",\"m8w-1i\",\"m8w-1l\",\"m8w-1n\"],\"dynamic-content\":[]},\"el:e172\":{\"text-standard\":[\"m8w-1f\",\"m8w-1h\",\"m8w-1l\",\"m8w-1m\"],\"dynamic-content\":[]},\"el:e11\":{\"image\":[\"m8w-1o\",\"m8w-1p\"],\"dynamic-content\":[]},\"el:e47\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e49\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e51\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e53\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e57\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e59\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e61\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e63\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e72\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e74\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e76\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e78\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e87\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e89\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e91\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e93\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e97\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e99\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e101\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e103\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e112\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e114\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e116\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e118\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e127\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e129\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e131\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e133\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e142\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e144\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e146\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e148\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e152\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e154\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e156\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e158\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e162\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e164\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e166\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e168\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e177\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e179\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e181\":{\"image\":[\"m8w-1o\",\"m8w-1q\",\"m8w-1r\"],\"dynamic-content\":[]},\"el:e183\":{\"image\":[\"m8w-1o\",\"m8w-1q\"],\"dynamic-content\":[]},\"el:e15\":{\"counter\":[\"m8w-1s\"],\"dynamic-content\":[]},\"el:e17\":{\"counter\":[\"m8w-1s\"],\"dynamic-content\":[]},\"el:e19\":{\"counter\":[\"m8w-1s\"],\"dynamic-content\":[]},\"el:e40\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-1y\"],\"dynamic-content\":[]},\"el:e65\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-1z\"],\"dynamic-content\":[]},\"el:e80\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-20\"],\"dynamic-content\":[]},\"el:e105\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-21\"],\"dynamic-content\":[]},\"el:e120\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-22\"],\"dynamic-content\":[]},\"el:e135\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-23\"],\"dynamic-content\":[]},\"el:e170\":{\"layout-row\":[\"m8w-1w\"],\"layout-row-columns\":[\"m8w-1x\",\"m8w-24\"],\"dynamic-content\":[]},\"el:e41\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e66\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e81\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e106\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e121\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e136\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e171\":{\"layout-column\":[\"m8w-25\"],\"dynamic-content\":[]},\"el:e44\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-28\"],\"dynamic-content\":[]},\"el:e54\":{\"layout-div\":[\"m8w-26\",\"m8w-29\"],\"dynamic-content\":[]},\"el:e69\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-2a\"],\"dynamic-content\":[]},\"el:e84\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-28\"],\"dynamic-content\":[]},\"el:e94\":{\"layout-div\":[\"m8w-26\",\"m8w-29\"],\"dynamic-content\":[]},\"el:e109\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-28\"],\"dynamic-content\":[]},\"el:e124\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-28\"],\"dynamic-content\":[]},\"el:e139\":{\"layout-div\":[\"m8w-26\",\"m8w-29\"],\"dynamic-content\":[]},\"el:e149\":{\"layout-div\":[\"m8w-26\",\"m8w-29\"],\"dynamic-content\":[]},\"el:e159\":{\"layout-div\":[\"m8w-26\",\"m8w-29\"],\"dynamic-content\":[]},\"el:e174\":{\"layout-div\":[\"m8w-26\",\"m8w-27\",\"m8w-28\"],\"dynamic-content\":[]},\"el:e45\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2d\",\"m8w-2e\",\"m8w-2f\"],\"dynamic-content\":[]},\"el:e55\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2g\",\"m8w-2h\",\"m8w-2i\"],\"dynamic-content\":[]},\"el:e70\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2e\",\"m8w-2f\",\"m8w-2j\"],\"dynamic-content\":[]},\"el:e85\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2d\",\"m8w-2e\",\"m8w-2f\"],\"dynamic-content\":[]},\"el:e95\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2g\",\"m8w-2h\",\"m8w-2i\"],\"dynamic-content\":[]},\"el:e110\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2g\",\"m8w-2h\",\"m8w-2i\"],\"dynamic-content\":[]},\"el:e125\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2g\",\"m8w-2h\",\"m8w-2i\"],\"dynamic-content\":[]},\"el:e140\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2g\",\"m8w-2h\",\"m8w-2k\",\"m8w-2l\"],\"dynamic-content\":[]},\"el:e150\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2g\",\"m8w-2h\",\"m8w-2k\",\"m8w-2l\"],\"dynamic-content\":[]},\"el:e160\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2f\",\"m8w-2g\",\"m8w-2k\"],\"dynamic-content\":[]},\"el:e175\":{\"layout-grid\":[\"m8w-2b\",\"m8w-2c\",\"m8w-2d\",\"m8w-2e\",\"m8w-2f\"],\"dynamic-content\":[]},\"el:e46\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e52\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e56\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e62\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e71\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e77\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e86\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e92\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e96\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e102\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e111\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e117\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e126\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e132\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e141\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e147\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e151\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e157\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e161\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e167\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e176\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2n\",\"m8w-2o\",\"m8w-2p\"],\"dynamic-content\":[]},\"el:e182\":{\"layout-cell\":[\"m8w-2m\",\"m8w-2p\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e48\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e58\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e73\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e88\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e98\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e113\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e128\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2o\",\"m8w-2p\",\"m8w-2q\"],\"dynamic-content\":[]},\"el:e143\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e153\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e163\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e178\":{\"layout-cell\":[\"m8w-2n\",\"m8w-2p\",\"m8w-2q\",\"m8w-2r\"],\"dynamic-content\":[]},\"el:e50\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e60\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e75\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e90\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e100\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e115\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e130\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2t\",\"m8w-2u\"],\"dynamic-content\":[]},\"el:e145\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e155\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e165\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e180\":{\"layout-cell\":[\"m8w-2p\",\"m8w-2q\",\"m8w-2s\",\"m8w-2t\"],\"dynamic-content\":[]},\"el:e0\":{\"dynamic-content\":[]}},\"tss\":\" .m8w-0.x-section{margin-top:0px;} .m8w-1.x-section{margin-right:0px;margin-left:0px;} .m8w-2.x-section{margin-bottom:0px;} .m8w-3.x-section{border-top-width:1px;border-right-width:0px;border-bottom-width:1px;border-left-width:0px;border-top-style:solid;border-right-style:none;border-bottom-style:solid;border-left-style:none;border-top-color:rgba(0,0,0,0.1);border-right-color:transparent;border-bottom-color:hsla(0,0%,0%,0.1);border-left-color:transparent;text-align:center;} .m8w-4.x-section{padding-right:0px;padding-left:0px;} .m8w-5.x-section{padding-top:45px;padding-bottom:45px;} .m8w-6.x-section{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m8w-7.x-section{z-index:1;} .m8w-8.x-section{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m8w-9.x-section{padding-top:65px;padding-bottom:65px;background-color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m8w-a.x-section{margin-top:2em;margin-bottom:2em;margin-left:0em;} .m8w-b.x-section{margin-right:0em;} .m8w-c.x-section{padding-top:20px;padding-bottom:20px;background-color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m8w-d.x-section{padding-top:0px;} .m8w-e.x-section{padding-bottom:0px;} .m8w-f.x-section{background-color:hsl(0, 0%, 100%);} .m8w-g.x-section{margin-top:4em;margin-bottom:4em;margin-left:0;} .m8w-h.x-section{z-index:auto;} .m8w-i.x-section{padding-top:0em;padding-bottom:0.5em;} .m8w-j.x-section{background-color:#ffffff;} .m8w-k.x-section{margin-top:6px;} .m8w-l.x-section{margin-top:2px;margin-bottom:2px;padding-top:2px;padding-bottom:2px;} .m8w-m.x-section{padding-top:6px;} .m8w-n.x-section{padding-bottom:4px;} .m8w-o.x-section{margin-top:10em;margin-right:10em;margin-bottom:10em;margin-left:calc(10%);background-color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m8w-p{transition-timing-function:ease-in;} .m8w-p .x-anchor-text-primary {transition-timing-function:ease-in;} .m8w-p .x-anchor-text-secondary {transition-timing-function:ease-in;} .m8w-p .x-graphic-child {transition-timing-function:ease-in;} :where(body:not(.tco-disable-effects)) .m8w-p:hover,:where(body:not(.tco-disable-effects)) [data-x-effect-provider*=\\\"effects\\\"]:hover .m8w-p{opacity:1;} .m8w-q{transform:scale(1);} .m8w-r.x-container{margin-top:0em;margin-bottom:0em;} .m8w-s.x-container{margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;box-shadow:none;z-index:1;} .m8w-t.x-container{margin-top:0px;margin-bottom:0px;} .m8w-u.x-column{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;box-shadow:none;z-index:1;} .m8w-w.x-column{text-align:center;} .m8w-x.x-column{padding-top:calc(2vw + 25px);padding-right:calc(2vw + 25px);padding-bottom:calc(2vw + 25px);padding-left:calc(2vw + 25px);} .m8w-y.x-column{background-color:%%post tss-color%%global-color:secondary%%\\/post%%;} .m8w-z.x-column{background-color:%%post tss-color%%global-color:tVcoR2z4jLtc2oTKy2%%\\/post%%;} .m8w-10.x-column{background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m8w-11.x-text{margin-top:0em;margin-bottom:0em;font-size:1em;} .m8w-12.x-text{margin-right:auto;margin-left:auto;} .m8w-12.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|700%%\\/post%%;text-transform:none;} .m8w-13.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m8w-13.x-text .x-text-content-text-primary{font-family:inherit;font-style:normal;} .m8w-15.x-text .x-text-content-text-primary{font-size:calc(1vw + 18px);letter-spacing:-0.025em;margin-right:calc(-0.025em * -1);} .m8w-16.x-text .x-text-content-text-primary{line-height:1.25;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m8w-16.x-text .x-text-typing{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m8w-16.x-text .x-typed-cursor{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m8w-17.x-text{max-width:12em;margin-top:0px;margin-bottom:40px;padding-top:0em;padding-right:0em;padding-bottom:1em;padding-left:0em;font-size:calc(1.5vw + 32px);} .m8w-17.x-text .x-text-content-text-primary{font-size:1em;line-height:1.05;text-align:left;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m8w-17.x-text .x-text-content-text-subheadline{margin-top:0.5em;font-family:inherit;font-size:0.385em;font-style:italic;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.55;letter-spacing:0em;text-align:left;text-transform:none;color:#000000;} .m8w-18.x-text .x-text-content-text-primary{letter-spacing:-0.015em;margin-right:calc(-0.015em * -1);} .m8w-19.x-text{font-size:1.1em;} .m8w-19.x-text .x-text-content-text{margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;} .m8w-19.x-text .x-text-content-text-primary{font-weight:%%post tss-fw%%inherit|100%%\\/post%%;line-height:1.4;text-transform:capitalize;} .m8w-1a.x-text .x-text-content-text-primary{color:%%post tss-color%%global-color:primary%%\\/post%%;} .m8w-1b.x-text{max-width:24rem;} .m8w-1b.x-text .x-text-content-text-primary{font-size:calc(1.25vw + 21px);line-height:1;} .m8w-1c.x-text{margin-top:-2.137em;} .m8w-1d.x-text{margin-right:0em;margin-left:0em;line-height:inherit;} .m8w-1e.x-text{margin-bottom:0em;font-size:1em;} .m8w-1f.x-text{border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-style:normal;letter-spacing:0em;} .m8w-1f.x-text > :first-child{margin-top:0;} .m8w-1f.x-text > :last-child{margin-bottom:0;} .m8w-1g.x-text{font-family:inherit;text-transform:none;} .m8w-1h.x-text{font-weight:inherit;} .m8w-1i.x-text{color:rgba(0, 0, 0, 1);} .m8w-1j.x-text{margin-top:0.404em;text-align:left;} .m8w-1k.x-text{max-width:24rem;margin-top:1em;margin-right:auto;margin-left:auto;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1.6;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m8w-1l.x-text{line-height:calc(100vw - 92vw);} .m8w-1m.x-text{font-family:%%post tss-ff%%system:geneva%%\\/post%%;font-size:calc(2rem + 3.5vw);text-align:center;text-transform:uppercase;color:%%post tss-color%%global-color:primary%%\\/post%%;background-color:%%post tss-color%%global-color:MqGYJUpXapYSDre2cf%%\\/post%%;} .m8w-1n.x-text{font-size:calc(100vw - 92vw);background-color:%%post tss-color%%global-color:bixekMqNb6S1TqpoP7%%\\/post%%;} .m8w-1o.x-image{font-size:1em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;} .m8w-1p.x-image{padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;background-color:hsla(0, 0%, 100%, 0);} .m8w-1q.x-image{display:block;width:100%;} .m8w-1q.x-image img{width:100%;object-fit:cover;} .m8w-1q.x-image,.m8w-1q.x-image img{height:100%;} .m8w-1r.x-image{background-color:#e3f0fc;} .m8w-1s.x-counter{margin-top:40px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:1em;} .m8w-1s .x-counter-number-wrap{margin-top:0em;margin-right:calc(-0.015em * -1);margin-bottom:0.15em;margin-left:0px;font-family:inherit;font-size:3em;font-style:normal;font-weight:%%post tss-fw%%inherit|700%%\\/post%%;line-height:1;letter-spacing:-0.015em;text-align:center;color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m8w-1s .x-counter-after,.m8w-1s .x-counter-before{font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|400%%\\/post%%;line-height:1;letter-spacing:0.25em;margin-right:calc(0.25em * -1);text-align:center;text-transform:uppercase;color:#888888;} .m8w-1t.x-anchor {margin-top:1.191em;margin-right:0em;margin-bottom:1.191em;margin-left:0em;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-left-radius:0.35em;border-top-right-radius:0.35em;border-bottom-right-radius:0.35em;border-bottom-left-radius:0.35em;background-color:%%post tss-color%%global-color:primary%%\\/post%%;box-shadow:0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);} .m8w-1t.x-anchor .x-anchor-content {display:flex;flex-direction:row;justify-content:center;align-items:center;padding-top:0.575em;padding-right:0.85em;padding-bottom:0.575em;padding-left:0.85em;} .m8w-1t.x-anchor .x-anchor-text {margin-top:5px;margin-right:5px;margin-bottom:5px;margin-left:5px;} .m8w-1t.x-anchor .x-anchor-text-primary {font-family:inherit;font-size:1em;font-style:normal;font-weight:%%post tss-fw%%inherit|fw-bold%%\\/post%%;line-height:1;text-transform:uppercase;color:%%post tss-color%%global-color:4c696e6b%%\\/post%%;} .m8w-1t.x-anchor:hover .x-anchor-text-primary,.m8w-1t.x-anchor[class*=\\\"active\\\"] .x-anchor-text-primary,[data-x-effect-provider*=\\\"colors\\\"]:hover .m8w-1t.x-anchor .x-anchor-text-primary {color:%%post tss-color%%global-color:d5OcSiPv75yItABYW7%%\\/post%%;} .m8w-1u.x-anchor {font-size:1.4em;} .m8w-1v.x-anchor {font-size:2em;} .m8w-1w.x-row{z-index:auto;margin-right:auto;margin-left:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;font-size:1em;} .m8w-1w > .x-row-inner{flex-direction:row;justify-content:flex-start;align-items:stretch;align-content:stretch;margin-top:calc(((0px \\/ 2) + 1px) * -1);margin-right:calc(((0px \\/ 2) + 1px) * -1);margin-bottom:calc(((0px \\/ 2) + 1px) * -1);margin-left:calc(((0px \\/ 2) + 1px) * -1);} .m8w-1x{--gap:0px;} .m8w-1y > .x-row-inner > *:nth-child(1n - 0) \\/** 67473196d73c2 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-1z > .x-row-inner > *:nth-child(1n - 0) \\/** 674731972e327 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-20 > .x-row-inner > *:nth-child(1n - 0) \\/** 674731975bb2e *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-21 > .x-row-inner > *:nth-child(1n - 0) \\/** 67473197a190f *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-22 > .x-row-inner > *:nth-child(1n - 0) \\/** 67473197cb364 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-23 > .x-row-inner > *:nth-child(1n - 0) \\/** 6747319801107 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-24 > .x-row-inner > *:nth-child(1n - 0) \\/** 6747319863c65 *\\/{flex-basis:calc(100% - clamp(0px, var(--gap), 9999px));} .m8w-25.x-col{z-index:1;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m8w-26{flex-grow:0;flex-shrink:1;flex-basis:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;} .m8w-27{margin-top:6px;margin-right:0px;margin-left:0px;} .m8w-28{margin-bottom:2px;} .m8w-2a{margin-bottom:4px;} .m8w-2b.x-grid{overflow-x:hidden;overflow-y:hidden;justify-content:stretch;align-content:stretch;justify-items:stretch;align-items:stretch;z-index:auto;width:100%;max-width:100%;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;font-size:1em;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(3, clamp(150px, 27vmin, 200px));} .m8w-2c.x-grid{grid-gap:0.5em 0.5em;} .m8w-2d.x-grid{margin-top:0px;} .m8w-2e.x-grid{margin-right:0;margin-bottom:0.5em;margin-left:0;} .m8w-2h.x-grid{padding-top:0px;padding-right:0px;padding-left:0px;} .m8w-2i.x-grid{padding-bottom:0.5em;} .m8w-2j.x-grid{margin-top:3px;} .m8w-2k.x-grid{grid-gap:4px 4px;} .m8w-2l.x-grid{padding-bottom:4px;} .m8w-2m.x-cell{grid-column-start:1;grid-column-end:2;} .m8w-2n.x-cell{grid-row-start:1;} .m8w-2o.x-cell{grid-row-end:3;} .m8w-2p.x-cell{justify-self:auto;align-self:auto;overflow-x:hidden;overflow-y:hidden;z-index:auto;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;font-size:1em;background-color:#e3f0fc;} .m8w-2q.x-cell{grid-column-start:2;grid-column-end:3;} .m8w-2r.x-cell{grid-row-end:2;} .m8w-2s.x-cell{grid-row-start:2;} .m8w-2t.x-cell{grid-row-end:4;} .m8w-2u.x-cell{grid-row-start:3;}\",\"element_css\":\"                                                                                                                                                                                          \"}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) 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=InnoDB AUTO_INCREMENT=468 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES
(1,1,'2024-11-18 21:17:10','2024-11-18 21:17:10','<!-- 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!','','trash','open','open','','hello-world__trashed','','','2024-11-19 21:41:31','2024-11-19 21:41:31','',0,'http://dev.baselinestucco.com/?p=1',0,'post','',1),
(2,1,'2024-11-18 21:17:10','2024-11-18 21:17:10','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][cs_element_headline _id=\"8\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Servicing The Hudson Valley\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_button _id=\"13\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"14\" ][cs_element_row _id=\"15\" ][cs_element_column _id=\"16\" ][cs_element_image _id=\"17\" ][cs_element_gap _id=\"18\" ][/cs_element_column][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_image _id=\"27\" ][cs_element_gap _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"31\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"37\" ][cs_element_column _id=\"38\" ][cs_element_image _id=\"39\" ][cs_element_gap _id=\"40\" ][/cs_element_column][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"47\" ][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_button _id=\"50\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"51\" ][cs_element_row _id=\"52\" ][cs_element_column _id=\"53\" ][cs_element_headline _id=\"54\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"57\" ][cs_element_column _id=\"58\" ][cs_element_image _id=\"59\" ][cs_element_gap _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"62\" ][cs_element_image _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"65\" ][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_image _id=\"67\" ][cs_element_text _id=\"68\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"69\" ][/cs_element_column][cs_element_column _id=\"70\" ][cs_element_image _id=\"71\" ][cs_element_text _id=\"72\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"73\" ][/cs_element_column][cs_element_column _id=\"74\" ][cs_element_image _id=\"75\" ][cs_element_text _id=\"76\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_row _id=\"82\" ][cs_element_column _id=\"83\" ][cs_element_headline _id=\"84\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"85\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"87\" ][cs_element_headline _id=\"88\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"89\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"91\" ][cs_element_headline _id=\"92\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"93\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"95\" ][cs_element_row _id=\"96\" ][cs_element_column _id=\"97\" ][cs_element_headline _id=\"98\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"99\" ][cs_element_row _id=\"100\" ][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"103\" ][cs_element_column _id=\"104\" ][cs_element_headline _id=\"105\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"106\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"108\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"109\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"110\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"111\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_headline _id=\"113\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"114\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"118\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"119\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','publish','closed','closed','','home','','','2024-11-27 14:48:23','2024-11-27 14:48:23','',0,'http://dev.baselinestucco.com/?page_id=2',0,'page','',0),
(3,1,'2024-11-18 21:17:10','2024-11-18 21:17:10','[cs_content _p=\'3\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Privacy Policy\\n\\n[/cs_content_seo][cs_element_line _id=\"5\" ][cs_element_text _id=\"6\" ][cs_content_seo]Baseline Stucco (\"we,\" \"our,\" or \"us\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website www.baselinestucco.com&nbsp;or interact with us online or offline.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_text _id=\"9\" ][cs_content_seo]We may collect both personal and non-personal information. Personal information includes details you provide to us, such as your name, email address, phone number, and other contact details when filling out forms, contacting us, or requesting our services. Non-personal information is collected automatically and may include your IP address, browser type, operating system, and information about your interactions with our website, such as pages visited and time spent on each page.\nThe information we collect is used to provide, manage, and improve our services, respond to inquiries, process service requests, send updates or promotional materials, and analyze website usage to enhance the user experience. We may also use your information to comply with legal obligations or enforce our terms and conditions.\nWe do not sell, rent, or share your personal information with third parties except as necessary. This includes working with trusted service providers who assist us in delivering services, complying with applicable laws, or protecting our rights and safety or those of our clients.\nCookies and similar tracking technologies are used to improve website functionality, analyze traffic, and provide tailored content and advertisements. You can disable cookies through your browser settings, but doing so may affect your website experience.\nWe take appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. While we strive to secure your data, no method of data transmission over the internet is entirely secure, so we encourage you to take precautions when sharing sensitive information online.\nYou have rights regarding your personal data, including accessing, correcting, or requesting deletion of the information we hold about you. You can also opt out of receiving marketing communications at any time. To exercise your rights, please contact us using the details provided below.\nOur website may include links to third-party websites, which have their own privacy practices. We are not responsible for the content or privacy policies of these external sites and encourage you to review their policies before providing personal information.\nWe may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.\nIf you have questions, concerns, or requests related to this Privacy Policy, please contact us by email at [Insert Email Address], by phone at [Insert Phone Number], or by mail at [Insert Physical Address].\nThank you for trusting Baseline Stucco. Your privacy and security are important to us.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2024-11-26 21:08:42','2024-11-26 21:08:42','',0,'http://dev.baselinestucco.com/?page_id=3',0,'page','',0),
(4,0,'2024-11-18 21:17:10','2024-11-18 21:17:10','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-11-18 21:17:10','2024-11-18 21:17:10','',0,'http://dev.baselinestucco.com/2024/11/18/navigation/',0,'wp_navigation','',0),
(7,1,'2024-11-19 16:07:09','2024-11-19 16:07:09','{\"version\": 3, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfive','','','2024-11-19 16:07:09','2024-11-19 16:07:09','',0,'https://dev.baselinestucco.com/2024/11/19/wp-global-styles-twentytwentyfive/',0,'wp_global_styles','',0),
(9,2,'2024-11-19 21:36:06','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-11-19 21:36:06','0000-00-00 00:00:00','',0,'https://dev.baselinestucco.com/?p=9',0,'post','',0),
(10,2,'2024-11-19 21:41:25','2024-11-19 21:41:25','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://dev.baselinestucco.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-19 21:41:25','2024-11-19 21:41:25','',2,'https://dev.baselinestucco.com/?p=10',0,'revision','',0),
(11,2,'2024-11-19 21:41:31','2024-11-19 21:41:31','<!-- 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!','','inherit','closed','closed','','1-revision-v1','','','2024-11-19 21:41:31','2024-11-19 21:41:31','',1,'https://dev.baselinestucco.com/?p=11',0,'revision','',0),
(12,1,'2024-11-20 16:51:28','2024-11-20 16:51:28','','el-rey-bg-upper','','inherit','open','closed','','el-rey-bg-upper','','','2024-11-20 16:51:28','2024-11-20 16:51:28','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/el-rey-bg-upper.png',0,'attachment','image/png',0),
(13,1,'2024-11-20 16:51:30','2024-11-20 16:51:30','','van-2','','inherit','open','closed','','van-2','','','2024-11-20 16:51:30','2024-11-20 16:51:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/van-2.jpg',0,'attachment','image/jpeg',0),
(14,1,'2024-11-20 16:51:31','2024-11-20 16:51:31','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Page Mcleod','','tco-data','closed','closed','','page-mcleod','','','2024-11-20 16:51:31','2024-11-20 16:51:31','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=14',0,'cs_template','',0),
(15,1,'2024-11-20 16:51:40','2024-11-20 16:51:40','','Breaking','','inherit','open','closed','','breaking','','','2024-11-20 16:51:40','2024-11-20 16:51:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Breaking.jpg',0,'attachment','image/jpeg',0),
(16,1,'2024-11-20 16:51:42','2024-11-20 16:51:42','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Breaking Barriers','','tco-data','closed','closed','','breaking-barriers','','','2024-11-20 16:51:42','2024-11-20 16:51:42','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=16',0,'cs_template','',0),
(17,1,'2024-11-20 16:52:02','2024-11-20 16:52:02','','McLeod_Expedite_Logo_Final_forTshirts','','inherit','open','closed','','mcleod_expedite_logo_final_fortshirts','','','2024-11-20 16:52:02','2024-11-20 16:52:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/McLeod_Expedite_Logo_Final_forTshirts.png',0,'attachment','image/png',0),
(18,1,'2024-11-20 16:52:03','2024-11-20 16:52:03','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','footer','','tco-data','closed','closed','','footer','','','2024-11-20 16:52:03','2024-11-20 16:52:03','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=18',0,'cs_template','',0),
(19,1,'2024-11-20 16:52:19','2024-11-20 16:52:19','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_headline _id=\"3\" ][cs_content_seo]LTL Delivery Services\\n\\n[/cs_content_seo][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_layout_div _id=\"5\" ][cs_element_headline _id=\"6\" ][cs_content_seo]Efficient Solutions for Your Smaller Shipments\\n\\nQuick caption here\\n\\n[/cs_content_seo][cs_element_text _id=\"7\" ][cs_content_seo]At McLeod Expedite, our LTL (Less-Than-Truckload) delivery services provide a cost-effective way to transport smaller shipments. We combine your goods with others, ensuring efficient and timely delivery while keeping costs low. Ideal for businesses with smaller loads.\\n\\n[/cs_content_seo][cs_element_button _id=\"8\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][cs_element_layout_row _id=\"9\" ][cs_element_layout_column _id=\"10\" ][cs_element_layout_div_2 _id=\"11\" ][cs_element_image _id=\"12\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"13\" ][cs_element_text _id=\"14\" ][cs_content_seo]LTL Delivery Services\\n\\n[/cs_content_seo][cs_element_line _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Cost-Effective: Save money by sharing truck space with other shipments.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"17\" ][cs_content_seo]Efficient Delivery: Consolidated shipments for timely arrivals.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Reliable Service: Perfect for businesses needing to ship smaller loads.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]Nationwide Coverage: Reliable LTL delivery services across the country.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]Flexible Scheduling: Customize delivery times to fit your specific needs with guaranteed options. to ship smaller loads.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_layout_div][cs_element_layout_row _id=\"21\" ][cs_element_layout_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-20 16:52:19','2024-11-20 16:52:19','',2,'https://dev.baselinestucco.com/?p=19',0,'revision','',0),
(20,1,'2024-11-25 14:04:10','2024-11-25 14:04:10','{\"settings\":{\"customCSS\":\"\",\"customJS\":\"\",\"assignments\":[{\"group\":true,\"condition\":\"site:entire-site\",\"value\":\"\"}],\"layout_type\":\"header\",\"assignment_priority\":0,\"general_featured_image\":\"\",\"multi_region\":false},\"regions\":{\"top\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Header\",\"_m\":{\"e\":1},\"_region\":\"top\",\"bar_base_font_size\":\"16px\",\"bar_bg_color\":\"hsl(0, 0%, 100%)\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0px\",\"bar_height\":\"7em\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"0em\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_sticky\":true,\"bar_width\":\"210px\",\"bg_border_radius\":\"inherit\",\"hide_bp\":\"none\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Navigation\",\"_m\":{\"e\":2},\"_region\":\"top\",\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0em 0em 0em 2em\",\"container_padding\":\"0px\",\"container_row_flex_justify\":\"center\",\"container_width\":\"100%\",\"container_z_index\":\"1\",\"hide_bp\":\"lg md sm xs\",\"_modules\":[{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"_region\":\"top\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"black\",\"anchor_graphic_icon_color_alt\":\"black\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_margin\":\"4px\",\"anchor_margin\":\"0em 0em 0em 0em\",\"anchor_padding\":\"0.5em 0.75em 0.5em 0.75em\",\"anchor_primary_font_family\":\"426f647920436f7079\",\"anchor_primary_font_size\":\"1.25em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_letter_spacing\":\".1em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"black\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_location\":\"t_c\",\"anchor_primary_particle_transform_origin\":\"50% 0%\",\"anchor_primary_text_color\":\"global-color:4272616e64205365636f6e64617279\",\"anchor_primary_text_color_alt\":\"hsl(0, 2%, 69%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_location\":\"t_c\",\"anchor_secondary_particle_transform_origin\":\"50% 0%\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"black\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 100%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 54%)\",\"anchor_sub_indicator_margin\":\"!0px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px\",\"dropdown_base_font_size\":\"12px\",\"dropdown_bg_color\":\"global-color:4272616e64205072696d617279\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_width\":\"18em\",\"hide_bp\":\"none\",\"menu\":\"menu:5\",\"menu_base_font_size\":\"0.9em\",\"menu_flex\":\"0 1 auto\",\"menu_margin\":\"0px\",\"sub_anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_font_size\":\"1.5em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"1.25em\",\"sub_anchor_primary_font_family\":\"48656164696e6773\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_height\":\"100%\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_scale\":\"scale-x\",\"sub_anchor_primary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_primary_particle_width\":\"3px\",\"sub_anchor_primary_text_color\":\"white\",\"sub_anchor_primary_text_color_alt\":\"white\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_secondary_font_size\":\"1em\",\"sub_anchor_secondary_particle_color\":\"#ffba00\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_height\":\"100%\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_scale\":\"scale-x\",\"sub_anchor_secondary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_secondary_particle_width\":\"3px\",\"sub_anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_font_size\":\"1.5em\",\"sub_anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_width\":\"100%\"},{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_region\":\"top\",\"image_href\":\"/\",\"image_link\":true,\"image_margin\":\"0em 1em 0em 1em\",\"image_src\":\"144:full\",\"_modules\":[]},{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"_region\":\"top\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_style\":\"none\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"black\",\"anchor_graphic_icon_color_alt\":\"black\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_graphic_margin\":\"4px\",\"anchor_padding\":\"0.5em 0.75em 0.5em 0.75em\",\"anchor_primary_font_family\":\"426f647920436f7079\",\"anchor_primary_font_size\":\"1.25em\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_letter_spacing\":\".1em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"black\",\"anchor_primary_particle_delay\":\"0s\",\"anchor_primary_particle_location\":\"t_c\",\"anchor_primary_particle_transform_origin\":\"50% 0%\",\"anchor_primary_text_color\":\"global-color:4272616e64205365636f6e64617279\",\"anchor_primary_text_color_alt\":\"hsl(0, 2%, 69%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_secondary_font_size\":\"0.85em\",\"anchor_secondary_font_style\":\"italic\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_particle_location\":\"t_c\",\"anchor_secondary_particle_transform_origin\":\"50% 0%\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"black\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 100%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 54%)\",\"anchor_sub_indicator_margin\":\"!0px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_text_margin\":\"4px\",\"dropdown_base_font_size\":\"12px\",\"dropdown_bg_color\":\"global-color:4272616e64205072696d617279\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"dropdown_width\":\"18em\",\"hide_bp\":\"none\",\"menu\":\"menu:4\",\"menu_base_font_size\":\"0.9em\",\"menu_flex\":\"0 1 auto\",\"sub_anchor_bg_color_alt\":\"rgba(255, 255, 255, 0.05)\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_flex_justify\":\"center\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_graphic_icon_font_size\":\"1.5em\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_margin\":\"4px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"1.25em\",\"sub_anchor_primary_font_family\":\"48656164696e6773\",\"sub_anchor_primary_font_weight\":\"700\",\"sub_anchor_primary_letter_spacing\":\"0.125em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_height\":\"100%\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_scale\":\"scale-x\",\"sub_anchor_primary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_primary_particle_width\":\"3px\",\"sub_anchor_primary_text_color\":\"white\",\"sub_anchor_primary_text_color_alt\":\"white\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_primary_text_transform\":\"uppercase\",\"sub_anchor_secondary_font_size\":\"1em\",\"sub_anchor_secondary_particle_color\":\"#ffba00\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_particle_height\":\"100%\",\"sub_anchor_secondary_particle_location\":\"c_l\",\"sub_anchor_secondary_particle_scale\":\"scale-x\",\"sub_anchor_secondary_particle_transform_origin\":\"0% 50%\",\"sub_anchor_secondary_particle_width\":\"3px\",\"sub_anchor_secondary_text_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_color_alt\":\"rgba(255, 255, 255, 0.5)\",\"sub_anchor_sub_indicator_font_size\":\"1.5em\",\"sub_anchor_sub_indicator_margin\":\"0px 4px 0px auto\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_text_margin\":\"4px auto 4px 4px\",\"sub_anchor_text_secondary_content\":\"on\",\"sub_anchor_text_spacing\":\"0.5em\",\"sub_anchor_width\":\"100%\"}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Logo Mobile\",\"_m\":{\"e\":2},\"_region\":\"top\",\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"flex-start\",\"container_width\":\"100%\",\"container_z_index\":\"1\",\"hide_bp\":\"xl\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_region\":\"top\",\"image_src\":\"36:full\",\"_modules\":[]}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_label\":\"Hamburger\",\"_m\":{\"e\":2},\"_region\":\"top\",\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 1.25em 0em 1.25em\",\"container_row_flex_justify\":\"center\",\"container_width\":\"140px\",\"container_z_index\":\"1\",\"hide_bp\":\"xl\",\"_modules\":[{\"_type\":\"nav-collapsed\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_region\":\"top\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_alt_enable\":true,\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 55%)\",\"anchor_graphic_icon_height\":\"1em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_icon_width\":\"1em\",\"anchor_margin\":\"0em\",\"anchor_padding\":\"0.575em 0em 0.575em 0em\",\"anchor_primary_particle\":true,\"anchor_primary_particle_color\":\"global-color:4c696e6b\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"hsl(0, 0%, 100%)\",\"anchor_primary_text_color_alt\":\"hsl(0, 1%, 73%)\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_size\":\"0.725em\",\"anchor_secondary_particle_color\":\"black\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_color\":\"black\",\"anchor_secondary_text_color_alt\":\"white\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"hsl(0, 0%, 98%)\",\"anchor_sub_indicator_color_alt\":\"hsl(0, 1%, 57%)\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"legacy_region_detect\":true,\"menu\":\"location:primary\",\"off_canvas_base_font_size\":\"20px\",\"off_canvas_bg_color\":\"rgba(0, 0, 0, 0.7)\",\"off_canvas_close_color\":\"rgb(255, 255, 255)\",\"off_canvas_close_color_alt\":\"global-color:YFP6101dwXohQOJ4sw\",\"off_canvas_close_dimensions\":\"1.5\",\"off_canvas_content_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"off_canvas_content_border_style\":\"none\",\"off_canvas_content_dynamic_rendering\":true,\"off_canvas_content_max_width\":\"275px\",\"off_canvas_esc_key_close\":true,\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_alt_enable\":true,\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_color\":\"hsl(0, 0%, 100%)\",\"sub_anchor_graphic_icon_color_alt\":\"hsl(0, 0%, 53%)\",\"sub_anchor_graphic_icon_height\":\"1em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_graphic_icon_width\":\"1em\",\"sub_anchor_graphic_type\":\"image\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_padding\":\"0.575em 0em 0.575em .75em\",\"sub_anchor_primary_particle\":true,\"sub_anchor_primary_particle_color\":\"global-color:4c696e6b\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_particle_location\":\"c_l\",\"sub_anchor_primary_particle_width\":\"3%\",\"sub_anchor_primary_text_color\":\"hsl(0, 1%, 98%)\",\"sub_anchor_primary_text_color_alt\":\"hsl(0, 0%, 52%)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_size\":\"0.725em\",\"sub_anchor_secondary_particle_color\":\"black\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_color\":\"black\",\"sub_anchor_secondary_text_color_alt\":\"white\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"hsl(0, 0%, 96%)\",\"sub_anchor_sub_indicator_color_alt\":\"hsl(0, 0%, 55%)\",\"sub_anchor_sub_indicator_margin\":\"5px 5px 5px 15px\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"toggle_anchor_bg_color_alt\":\"rgb(255, 255, 255)\",\"toggle_anchor_border_color_alt\":\"transparent\",\"toggle_anchor_border_radius\":\"5px\",\"toggle_anchor_border_style\":\"none\",\"toggle_anchor_box_shadow_color\":\"transparent\",\"toggle_anchor_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"toggle_anchor_graphic_icon\":\"hand-pointer-o\",\"toggle_anchor_graphic_icon_alt\":\"hand-spock-o\",\"toggle_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_border_style\":\"none\",\"toggle_anchor_graphic_icon_border_width\":\"0px\",\"toggle_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"toggle_anchor_graphic_icon_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_graphic_icon_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_graphic_icon_height\":\"1em\",\"toggle_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_graphic_icon_width\":\"1em\",\"toggle_anchor_graphic_image_height\":48,\"toggle_anchor_graphic_image_width\":48,\"toggle_anchor_primary_font_weight\":\"400\",\"toggle_anchor_primary_particle_delay\":\"0\",\"toggle_anchor_primary_text_align\":\"center\",\"toggle_anchor_primary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_primary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_primary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_secondary_font_size\":\"0.725em\",\"toggle_anchor_secondary_font_weight\":\"400\",\"toggle_anchor_secondary_particle_delay\":\"0\",\"toggle_anchor_secondary_text_align\":\"center\",\"toggle_anchor_secondary_text_color\":\"rgba(0, 0, 0, 0.35)\",\"toggle_anchor_secondary_text_color_alt\":\"rgba(0, 0, 0, 0.75)\",\"toggle_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"toggle_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"toggle_anchor_text_spacing\":\"5px\",\"toggle_burger_spacing\":\"3.5em\",\"toggle_burger_width\":\"12em\",\"toggle_color\":\"global-color:4c696e6b\",\"toggle_color_alt\":\"global-color:primary\",\"toggle_more_size\":\"6px\",\"toggle_more_spacing\":\"1.5em\",\"toggle_type\":\"more-h-1\"}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"top\",\"container_flex\":\"1 0 auto\",\"container_row_flex_justify\":\"flex-end\",\"container_width\":\"320px\",\"hide_bp\":\"sm xs\",\"_modules\":[{\"_type\":\"button\",\"_bp_base\":\"4_4\",\"_region\":\"top\",\"anchor_base_font_size\":\"1.25em\",\"anchor_bg_color\":\"global-color:primary\",\"anchor_href\":\"/contact\",\"anchor_margin\":\"0em 3em 0em 0em\",\"anchor_primary_text_color\":\"global-color:bixekMqNb6S1TqpoP7\",\"anchor_primary_text_color_alt\":\"global-color:d5OcSiPv75yItABYW7\",\"anchor_primary_text_transform\":\"uppercase\",\"anchor_text_primary_content\":\"Free Estimate\",\"_modules\":[]}]}]}],\"right\":[],\"bottom\":[],\"left\":[]}}','Header','','tco-data','closed','closed','','untitled-header','','','2024-11-26 00:30:48','2024-11-26 00:30:48','',0,'https://dev.baselinestucco.com/?post_type=cs_header&#038;p=20',0,'cs_header','',0),
(21,1,'2024-11-25 14:05:35','2024-11-25 14:05:35','','6','','inherit','open','closed','','6','','','2024-11-25 14:05:35','2024-11-25 14:05:35','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/6.jpg',0,'attachment','image/jpeg',0),
(22,1,'2024-11-25 14:05:35','2024-11-25 14:05:35','','ten','','inherit','open','closed','','ten','','','2024-11-25 14:05:35','2024-11-25 14:05:35','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/ten.jpg',0,'attachment','image/jpeg',0),
(23,1,'2024-11-25 14:05:35','2024-11-25 14:05:35','','gol','','inherit','open','closed','','gol','','','2024-11-25 14:05:35','2024-11-25 14:05:35','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/gol.jpg',0,'attachment','image/jpeg',0),
(24,1,'2024-11-25 14:05:36','2024-11-25 14:05:36','','kid','','inherit','open','closed','','kid','','','2024-11-25 14:05:36','2024-11-25 14:05:36','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/kid.jpg',0,'attachment','image/jpeg',0),
(25,1,'2024-11-25 14:05:37','2024-11-25 14:05:37','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Amenities','','tco-data','closed','closed','','amenities','','','2024-11-25 14:05:37','2024-11-25 14:05:37','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=25',0,'cs_template','',0),
(26,1,'2024-11-25 14:05:44','2024-11-25 14:05:44','','mcl','','inherit','open','closed','','mcl','','','2024-11-25 14:05:44','2024-11-25 14:05:44','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/mcl.png',0,'attachment','image/png',0),
(27,1,'2024-11-25 14:05:44','2024-11-25 14:05:44','','bl-1','','inherit','open','closed','','bl-1','','','2024-11-25 14:05:44','2024-11-25 14:05:44','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/bl-1.png',0,'attachment','image/png',0),
(28,1,'2024-11-25 14:05:46','2024-11-25 14:05:46','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','headerMcle','','tco-data','closed','closed','','headermcle','','','2024-11-25 14:05:46','2024-11-25 14:05:46','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=28',0,'cs_template','',0),
(29,1,'2024-11-25 14:05:54','2024-11-25 14:05:54','','Untitled-design','','inherit','open','closed','','untitled-design','','','2024-11-25 14:05:54','2024-11-25 14:05:54','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Untitled-design.jpg',0,'attachment','image/jpeg',0),
(30,1,'2024-11-25 14:05:54','2024-11-25 14:05:54','','7','','inherit','open','closed','','7','','','2024-11-25 14:05:54','2024-11-25 14:05:54','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/7.jpg',0,'attachment','image/jpeg',0),
(31,1,'2024-11-25 14:05:55','2024-11-25 14:05:55','','3-1','','inherit','open','closed','','3-1','','','2024-11-25 14:05:55','2024-11-25 14:05:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/3-1.jpg',0,'attachment','image/jpeg',0),
(32,1,'2024-11-25 14:05:55','2024-11-25 14:05:55','','4-1','','inherit','open','closed','','4-1','','','2024-11-25 14:05:55','2024-11-25 14:05:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4-1.jpg',0,'attachment','image/jpeg',0),
(33,1,'2024-11-25 14:05:56','2024-11-25 14:05:56','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','3 choice block','','tco-data','closed','closed','','3-choice-block','','','2024-11-25 14:05:56','2024-11-25 14:05:56','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=33',0,'cs_template','',0),
(34,1,'2024-11-25 14:06:12','2024-11-25 14:06:12','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','headerMcle 2','','tco-data','closed','closed','','headermcle-2','','','2024-11-25 14:06:12','2024-11-25 14:06:12','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=34',0,'cs_template','',0),
(35,1,'2024-11-25 14:15:09','2024-11-25 14:15:09','','Baseline Construction_Logo_Final','','inherit','open','closed','','baseline-construction_logo_final','','','2024-11-25 14:15:09','2024-11-25 14:15:09','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction_Logo_Final.png',0,'attachment','image/png',0),
(36,1,'2024-11-25 14:15:09','2024-11-25 14:15:09','','Baseline Construction Long Logo(500 x 200 px) (400 x 200 px)','','inherit','open','closed','','baseline-construction-long-logo500-x-200-px-400-x-200-px','','','2024-11-25 14:15:09','2024-11-25 14:15:09','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-Long-Logo500-x-200-px-400-x-200-px.png',0,'attachment','image/png',0),
(37,1,'2024-11-25 14:15:10','2024-11-25 14:15:10','','Baseline Construction_logo_square','','inherit','open','closed','','baseline-construction_logo_square','','','2024-11-25 14:15:10','2024-11-25 14:15:10','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction_logo_square.png',0,'attachment','image/png',0),
(38,1,'2024-11-25 14:28:43','2024-11-25 14:28:43','','Baseline Construction','','inherit','open','closed','','4l9a7826','','','2024-11-25 14:28:56','2024-11-25 14:28:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A7826.jpg',0,'attachment','image/jpeg',0),
(39,1,'2024-11-25 14:34:02','2024-11-25 14:34:02','','Baseline Construction Long Logo((800 x 400 px)','','inherit','open','closed','','baseline-construction-long-logo800-x-400-px','','','2024-11-25 14:34:02','2024-11-25 14:34:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-Long-Logo800-x-400-px.png',0,'attachment','image/png',0),
(40,1,'2024-11-25 14:38:46','2024-11-25 14:38:46','','4L9A7824','','inherit','open','closed','','4l9a7824','','','2024-11-25 14:38:46','2024-11-25 14:38:46','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A7824.jpg',0,'attachment','image/jpeg',0),
(41,1,'2024-11-25 14:38:52','2024-11-25 14:38:52','','4L9A3006','','inherit','open','closed','','4l9a3006','','','2024-11-25 14:38:52','2024-11-25 14:38:52','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3006.jpg',0,'attachment','image/jpeg',0),
(42,1,'2024-11-25 14:38:58','2024-11-25 14:38:58','','4L9A3009','','inherit','open','closed','','4l9a3009','','','2024-11-25 14:38:58','2024-11-25 14:38:58','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3009.jpg',0,'attachment','image/jpeg',0),
(43,1,'2024-11-25 14:42:37','2024-11-25 14:42:37','','Erika-Ross-800-x-200-px','','inherit','open','closed','','erika-ross-800-x-200-px','','','2024-11-25 14:42:37','2024-11-25 14:42:37','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Erika-Ross-800-x-200-px.png',0,'attachment','image/png',0),
(44,1,'2024-11-25 14:42:38','2024-11-25 14:42:38','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Moorings Header','','tco-data','closed','closed','','moorings-header','','','2024-11-25 14:42:38','2024-11-25 14:42:38','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=44',0,'cs_template','',0),
(45,1,'2024-11-25 14:44:32','2024-11-25 14:44:32','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','mooring header','','tco-data','closed','closed','','mooring-header','','','2024-11-25 14:44:32','2024-11-25 14:44:32','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=45',0,'cs_template','',0),
(46,1,'2024-11-25 11:21:03','2024-11-25 11:21:03','[cs_content _p=\'46\'][/cs_content]','Blog','','publish','closed','closed','','blog','','','2024-11-25 22:35:00','2024-11-25 22:35:00','',0,'https://dev.baselinestucco.com/?page_id=46',0,'page','',0),
(47,1,'2024-11-25 14:49:25','2024-11-25 14:49:25','[cs_content _p=\'46\'][/cs_content]','Untitled Page','','inherit','closed','closed','','46-revision-v1','','','2024-11-25 14:49:25','2024-11-25 14:49:25','',46,'https://dev.baselinestucco.com/?p=47',0,'revision','',0),
(48,1,'2024-11-25 14:49:37','2024-11-25 14:49:37','[cs_content _p=\'46\'][/cs_content]','Blog','','inherit','closed','closed','','46-revision-v1','','','2024-11-25 14:49:37','2024-11-25 14:49:37','',46,'https://dev.baselinestucco.com/?p=48',0,'revision','',0),
(49,1,'2024-11-25 11:18:53','2024-11-25 11:18:53','[cs_content _p=\'49\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Send Us a Message!\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Questions? Comments? Or suggestions? Feel free to send us a message!\\n\\n[/cs_content_seo][cs_element_form_integration _id=\"6\" ][/cs_element_layout_column][cs_element_layout_column _id=\"7\" ][cs_element_map _id=\"8\" ][/cs_element_map][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Contact','','publish','closed','closed','','contact','','','2024-11-26 17:04:49','2024-11-26 17:04:49','',0,'https://dev.baselinestucco.com/?page_id=49',0,'page','',0),
(50,1,'2024-11-25 14:49:46','2024-11-25 14:49:46','[cs_content _p=\'49\'][/cs_content]','Untitled Page','','inherit','closed','closed','','49-revision-v1','','','2024-11-25 14:49:46','2024-11-25 14:49:46','',49,'https://dev.baselinestucco.com/?p=50',0,'revision','',0),
(51,1,'2024-11-25 14:49:52','2024-11-25 14:49:52','[cs_content _p=\'49\'][/cs_content]','Contact','','inherit','closed','closed','','49-revision-v1','','','2024-11-25 14:49:52','2024-11-25 14:49:52','',49,'https://dev.baselinestucco.com/?p=51',0,'revision','',0),
(52,1,'2024-11-25 14:51:07','2024-11-25 14:51:07','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_headline _id=\"3\" ][cs_content_seo]LTL Delivery Services\\n\\n[/cs_content_seo][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_layout_div _id=\"5\" ][cs_element_headline _id=\"6\" ][cs_content_seo]Efficient Solutions for Your Smaller Shipments\\n\\nQuick caption here\\n\\n[/cs_content_seo][cs_element_text _id=\"7\" ][cs_content_seo]At McLeod Expedite, our LTL (Less-Than-Truckload) delivery services provide a cost-effective way to transport smaller shipments. We combine your goods with others, ensuring efficient and timely delivery while keeping costs low. Ideal for businesses with smaller loads.\\n\\n[/cs_content_seo][cs_element_button _id=\"8\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][cs_element_layout_row _id=\"9\" ][cs_element_layout_column _id=\"10\" ][cs_element_layout_div_2 _id=\"11\" ][cs_element_image _id=\"12\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"13\" ][cs_element_text _id=\"14\" ][cs_content_seo]LTL Delivery Services\\n\\n[/cs_content_seo][cs_element_line _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Cost-Effective: Save money by sharing truck space with other shipments.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"17\" ][cs_content_seo]Efficient Delivery: Consolidated shipments for timely arrivals.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Reliable Service: Perfect for businesses needing to ship smaller loads.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]Nationwide Coverage: Reliable LTL delivery services across the country.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]Flexible Scheduling: Customize delivery times to fit your specific needs with guaranteed options. to ship smaller loads.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_layout_div][cs_element_layout_row _id=\"21\" ][cs_element_layout_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"24\" ][cs_element_container _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]BreakingBarriers in Shipping\\n\\n[/cs_content_seo][/cs_element_container][/cs_element_bar][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 14:51:07','2024-11-25 14:51:07','',2,'https://dev.baselinestucco.com/?p=52',0,'revision','',0),
(53,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|__multi__\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/content-about.jpg\"}','Starter: About','','tco-data','closed','closed','','starter-about','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=53',0,'cs_template','',0),
(54,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|accordion\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-accordion.jpg\"}','Starter: Accordion','','tco-data','closed','closed','','starter-accordion','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=54',0,'cs_template','',0),
(55,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|alert\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-alert.jpg\"}','Starter: Alert','','tco-data','closed','closed','','starter-alert','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=55',0,'cs_template','',0),
(56,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|audio\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-audio.jpg\"}','Starter: Audio','','tco-data','closed','closed','','starter-audio','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=56',0,'cs_template','',0),
(57,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|__multi__\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/content-available-positions.jpg\"}','Starter: Available Positions','','tco-data','closed','closed','','starter-available-positions','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=57',0,'cs_template','',0),
(58,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|breadcrumbs\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-breadcrumbs.jpg\"}','Starter: Breadcrumbs','','tco-data','closed','closed','','starter-breadcrumbs','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=58',0,'cs_template','',0),
(59,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|button\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-button.jpg\"}','Starter: Button','','tco-data','closed','closed','','starter-button','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=59',0,'cs_template','',0),
(60,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|tp-wc-cart-dropdown\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-cart-dropdown.jpg\"}','Starter: Cart Dropdown','','tco-data','closed','closed','','starter-cart-dropdown','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=60',0,'cs_template','',0),
(61,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|tp-wc-cart-modal\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-cart-modal.jpg\"}','Starter: Cart Modal','','tco-data','closed','closed','','starter-cart-modal','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=61',0,'cs_template','',0),
(62,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|tp-wc-cart-off-canvas\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-cart-off-canvas.jpg\"}','Starter: Cart Off Canvas','','tco-data','closed','closed','','starter-cart-off-canvas','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=62',0,'cs_template','',0),
(63,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|content-area-dropdown\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-content-area-dropdown.jpg\"}','Starter: Content Area Dropdown','','tco-data','closed','closed','','starter-content-area-dropdown','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=63',0,'cs_template','',0),
(64,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|content-area-modal\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-content-area-modal.jpg\"}','Starter: Content Area Modal','','tco-data','closed','closed','','starter-content-area-modal','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=64',0,'cs_template','',0),
(65,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|content-area-off-canvas\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-content-area-off-canvas.jpg\"}','Starter: Content Area Off Canvas','','tco-data','closed','closed','','starter-content-area-off-canvas','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=65',0,'cs_template','',0),
(66,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|counter\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-counter.jpg\"}','Starter: Counter','','tco-data','closed','closed','','starter-counter','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=66',0,'cs_template','',0),
(67,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|headline\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-headline.jpg\"}','Starter: Headline','','tco-data','closed','closed','','starter-headline','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=67',0,'cs_template','',0),
(68,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|image\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-image.jpg\"}','Starter: Image','','tco-data','closed','closed','','starter-image','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=68',0,'cs_template','',0),
(69,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|line\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-line.jpg\"}','Starter: Line','','tco-data','closed','closed','','starter-line','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=69',0,'cs_template','',0),
(70,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|map\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-map.jpg\"}','Starter: Map','','tco-data','closed','closed','','starter-map','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=70',0,'cs_template','',0),
(71,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|__multi__\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/content-menu.jpg\"}','Starter: Menu','','tco-data','closed','closed','','starter-menu','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=71',0,'cs_template','',0),
(72,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|nav-collapsed\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-navigation-collapsed.jpg\"}','Starter: Navigation Collapsed','','tco-data','closed','closed','','starter-navigation-collapsed','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=72',0,'cs_template','',0),
(73,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|nav-dropdown\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-navigation-dropdown.jpg\"}','Starter: Navigation Dropdown','','tco-data','closed','closed','','starter-navigation-dropdown','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=73',0,'cs_template','',0),
(74,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|nav-inline\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-navigation-inline.jpg\"}','Starter: Navigation Inline','','tco-data','closed','closed','','starter-navigation-inline','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=74',0,'cs_template','',0),
(75,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|nav-modal\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-navigation-modal.jpg\"}','Starter: Navigation Modal','','tco-data','closed','closed','','starter-navigation-modal','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=75',0,'cs_template','',0),
(76,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|__multi__\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/content-pricing-plans.jpg\"}','Starter: Pricing Plans','','tco-data','closed','closed','','starter-pricing-plans','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=76',0,'cs_template','',0),
(77,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|quote\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-quote.jpg\"}','Starter: Quote','','tco-data','closed','closed','','starter-quote','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=77',0,'cs_template','',0),
(78,1,'2024-11-25 15:01:14','2024-11-25 15:01:14','{\"identifier\":\"element|__multi__\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/content-sales-page.jpg\"}','Starter: Sales Page','','tco-data','closed','closed','','starter-sales-page','','','2024-11-25 15:01:14','2024-11-25 15:01:14','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=78',0,'cs_template','',0),
(79,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|search-dropdown\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-search-dropdown.jpg\"}','Starter: Search Dropdown','','tco-data','closed','closed','','starter-search-dropdown','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=79',0,'cs_template','',0),
(80,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|search-inline\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-search-inline.jpg\"}','Starter: Search Inline','','tco-data','closed','closed','','starter-search-inline','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=80',0,'cs_template','',0),
(81,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|search-modal\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-search-modal.jpg\"}','Starter: Search Modal','','tco-data','closed','closed','','starter-search-modal','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=81',0,'cs_template','',0),
(82,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|social\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-social.jpg\"}','Starter: Social','','tco-data','closed','closed','','starter-social','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=82',0,'cs_template','',0),
(83,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|statbar\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-statbar.jpg\"}','Starter: Statbar','','tco-data','closed','closed','','starter-statbar','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=83',0,'cs_template','',0),
(84,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|text\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-text.jpg\"}','Starter: Text','','tco-data','closed','closed','','starter-text','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=84',0,'cs_template','',0),
(85,1,'2024-11-25 15:01:15','2024-11-25 15:01:15','{\"identifier\":\"element|video\",\"preview\":\"https://themeco-design-cloud.s3.amazonaws.com/starter-pack/previews/preset-video.jpg\"}','Starter: Video','','tco-data','closed','closed','','starter-video','','','2024-11-25 15:01:15','2024-11-25 15:01:15','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=85',0,'cs_template','',0),
(86,1,'2024-11-25 15:07:31','2024-11-25 15:07:31','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Introduction\\n\\n[/cs_content_seo][cs_element_line _id=\"9\" ][cs_element_text _id=\"10\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"11\" ][cs_element_row _id=\"12\" ][cs_element_column _id=\"13\" ][cs_element_headline _id=\"14\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"15\" ][cs_element_text _id=\"16\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"17\" ][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"21\" ][cs_element_headline _id=\"22\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"23\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"24\" ][cs_element_headline _id=\"25\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"26\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"27\" ][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_headline _id=\"33\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"36\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"37\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"39\" ][cs_element_column _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"47\" ][/cs_element_column][cs_element_column _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"50\" ][cs_element_column _id=\"51\" ][cs_element_image _id=\"52\" ][cs_element_gap _id=\"53\" ][/cs_element_column][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"56\" ][cs_element_headline _id=\"57\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"58\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"59\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"61\" ][cs_element_row _id=\"62\" ][cs_element_column _id=\"63\" ][cs_element_headline _id=\"64\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"65\" ][cs_element_text _id=\"66\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"67\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_row _id=\"69\" ][cs_element_column _id=\"70\" ][cs_element_headline _id=\"71\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"74\" ][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_gap _id=\"80\" ][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_image _id=\"82\" ][cs_element_gap _id=\"83\" ][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_image _id=\"85\" ][cs_element_gap _id=\"86\" ][/cs_element_column][cs_element_column _id=\"87\" ][cs_element_image _id=\"88\" ][cs_element_gap _id=\"89\" ][/cs_element_column][cs_element_column _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"92\" ][cs_element_column _id=\"93\" ][cs_element_text _id=\"94\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"95\" ][cs_element_row _id=\"96\" ][cs_element_column _id=\"97\" ][cs_element_headline _id=\"98\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"99\" ][cs_element_row _id=\"100\" ][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"103\" ][cs_element_column _id=\"104\" ][cs_element_image _id=\"105\" ][cs_element_gap _id=\"106\" ][/cs_element_column][cs_element_column _id=\"107\" ][cs_element_image _id=\"108\" ][cs_element_gap _id=\"109\" ][/cs_element_column][cs_element_column _id=\"110\" ][cs_element_image _id=\"111\" ][cs_element_gap _id=\"112\" ][/cs_element_column][cs_element_column _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"115\" ][cs_element_column _id=\"116\" ][cs_element_text _id=\"117\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_row _id=\"119\" ][cs_element_column _id=\"120\" ][cs_element_headline _id=\"121\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"122\" ][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][cs_element_gap _id=\"125\" ][/cs_element_column][cs_element_column _id=\"126\" ][cs_element_image _id=\"127\" ][cs_element_gap _id=\"128\" ][/cs_element_column][cs_element_column _id=\"129\" ][cs_element_image _id=\"130\" ][cs_element_gap _id=\"131\" ][/cs_element_column][cs_element_column _id=\"132\" ][cs_element_image _id=\"133\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"134\" ][cs_element_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_row _id=\"138\" ][cs_element_column _id=\"139\" ][cs_element_headline _id=\"140\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"141\" ][cs_element_row _id=\"142\" ][cs_element_column _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_gap _id=\"148\" ][/cs_element_column][cs_element_column _id=\"149\" ][cs_element_image _id=\"150\" ][cs_element_image _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:07:31','2024-11-25 15:07:31','',2,'https://dev.baselinestucco.com/?p=86',0,'revision','',0),
(87,1,'2024-11-25 15:11:59','2024-11-25 15:11:59','','Baseline Construction _White_Long Logo((800 x 400 px)','','inherit','open','closed','','baseline-construction-_white_long-logo800-x-400-px','','','2024-11-25 15:11:59','2024-11-25 15:11:59','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-_White_Long-Logo800-x-400-px.png',0,'attachment','image/png',0),
(88,1,'2024-11-25 15:13:55','2024-11-25 15:13:55','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_image _id=\"4\" ][cs_element_headline _id=\"5\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"6\" ][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_headline _id=\"9\" ][cs_content_seo]Introduction\\n\\n[/cs_content_seo][cs_element_line _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"16\" ][cs_element_text _id=\"17\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"28\" ][cs_element_row _id=\"29\" ][cs_element_column _id=\"30\" ][cs_element_image _id=\"31\" ][cs_element_gap _id=\"32\" ][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"37\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_element_headline _id=\"44\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"48\" ][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_image _id=\"50\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"59\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_row _id=\"63\" ][cs_element_column _id=\"64\" ][cs_element_headline _id=\"65\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"68\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"69\" ][cs_element_row _id=\"70\" ][cs_element_column _id=\"71\" ][cs_element_headline _id=\"72\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"75\" ][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][cs_element_gap _id=\"90\" ][/cs_element_column][cs_element_column _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_text _id=\"95\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_headline _id=\"103\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"104\" ][cs_element_column _id=\"105\" ][cs_element_image _id=\"106\" ][cs_element_gap _id=\"107\" ][/cs_element_column][cs_element_column _id=\"108\" ][cs_element_image _id=\"109\" ][cs_element_gap _id=\"110\" ][/cs_element_column][cs_element_column _id=\"111\" ][cs_element_image _id=\"112\" ][cs_element_gap _id=\"113\" ][/cs_element_column][cs_element_column _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_text _id=\"118\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_row _id=\"120\" ][cs_element_column _id=\"121\" ][cs_element_headline _id=\"122\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"123\" ][cs_element_column _id=\"124\" ][cs_element_image _id=\"125\" ][cs_element_gap _id=\"126\" ][/cs_element_column][cs_element_column _id=\"127\" ][cs_element_image _id=\"128\" ][cs_element_gap _id=\"129\" ][/cs_element_column][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][cs_element_gap _id=\"132\" ][/cs_element_column][cs_element_column _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"135\" ][cs_element_column _id=\"136\" ][cs_element_text _id=\"137\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"138\" ][cs_element_row _id=\"139\" ][cs_element_column _id=\"140\" ][cs_element_headline _id=\"141\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"142\" ][cs_element_row _id=\"143\" ][cs_element_column _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_gap _id=\"149\" ][/cs_element_column][cs_element_column _id=\"150\" ][cs_element_image _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:13:55','2024-11-25 15:13:55','',2,'https://dev.baselinestucco.com/?p=88',0,'revision','',0),
(89,1,'2024-11-25 15:19:10','2024-11-25 15:19:10','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_image _id=\"4\" ][cs_element_headline _id=\"5\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Introduction\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"17\" ][cs_element_text _id=\"18\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_headline _id=\"21\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"22\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"23\" ][cs_element_headline _id=\"24\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"25\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"29\" ][cs_element_row _id=\"30\" ][cs_element_column _id=\"31\" ][cs_element_image _id=\"32\" ][cs_element_gap _id=\"33\" ][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"41\" ][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"48\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"49\" ][/cs_element_column][cs_element_column _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"52\" ][cs_element_column _id=\"53\" ][cs_element_image _id=\"54\" ][cs_element_gap _id=\"55\" ][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_headline _id=\"57\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"62\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"63\" ][cs_element_row _id=\"64\" ][cs_element_column _id=\"65\" ][cs_element_headline _id=\"66\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"67\" ][cs_element_text _id=\"68\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"69\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"70\" ][cs_element_row _id=\"71\" ][cs_element_column _id=\"72\" ][cs_element_headline _id=\"73\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"74\" ][cs_element_text _id=\"75\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][cs_element_gap _id=\"88\" ][/cs_element_column][cs_element_column _id=\"89\" ][cs_element_image _id=\"90\" ][cs_element_gap _id=\"91\" ][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"101\" ][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_headline _id=\"104\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"105\" ][cs_element_column _id=\"106\" ][cs_element_image _id=\"107\" ][cs_element_gap _id=\"108\" ][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_image _id=\"110\" ][cs_element_gap _id=\"111\" ][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_image _id=\"113\" ][cs_element_gap _id=\"114\" ][/cs_element_column][cs_element_column _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"117\" ][cs_element_column _id=\"118\" ][cs_element_text _id=\"119\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"120\" ][cs_element_row _id=\"121\" ][cs_element_column _id=\"122\" ][cs_element_headline _id=\"123\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"124\" ][cs_element_column _id=\"125\" ][cs_element_image _id=\"126\" ][cs_element_gap _id=\"127\" ][/cs_element_column][cs_element_column _id=\"128\" ][cs_element_image _id=\"129\" ][cs_element_gap _id=\"130\" ][/cs_element_column][cs_element_column _id=\"131\" ][cs_element_image _id=\"132\" ][cs_element_gap _id=\"133\" ][/cs_element_column][cs_element_column _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_text _id=\"138\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_row _id=\"140\" ][cs_element_column _id=\"141\" ][cs_element_headline _id=\"142\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"143\" ][cs_element_row _id=\"144\" ][cs_element_column _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_gap _id=\"150\" ][/cs_element_column][cs_element_column _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][cs_element_image _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:19:10','2024-11-25 15:19:10','',2,'https://dev.baselinestucco.com/?p=89',0,'revision','',0),
(90,1,'2024-11-25 15:27:20','2024-11-25 15:27:20','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"6\" ][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_headline _id=\"9\" ][cs_content_seo]Introduction\\n\\n[/cs_content_seo][cs_element_line _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"16\" ][cs_element_text _id=\"17\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"28\" ][cs_element_row _id=\"29\" ][cs_element_column _id=\"30\" ][cs_element_image _id=\"31\" ][cs_element_gap _id=\"32\" ][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"37\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_element_headline _id=\"44\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"48\" ][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_image _id=\"50\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"59\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_row _id=\"63\" ][cs_element_column _id=\"64\" ][cs_element_headline _id=\"65\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"68\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"69\" ][cs_element_row _id=\"70\" ][cs_element_column _id=\"71\" ][cs_element_headline _id=\"72\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"75\" ][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][cs_element_gap _id=\"90\" ][/cs_element_column][cs_element_column _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_text _id=\"95\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_headline _id=\"103\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"104\" ][cs_element_column _id=\"105\" ][cs_element_image _id=\"106\" ][cs_element_gap _id=\"107\" ][/cs_element_column][cs_element_column _id=\"108\" ][cs_element_image _id=\"109\" ][cs_element_gap _id=\"110\" ][/cs_element_column][cs_element_column _id=\"111\" ][cs_element_image _id=\"112\" ][cs_element_gap _id=\"113\" ][/cs_element_column][cs_element_column _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_text _id=\"118\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_row _id=\"120\" ][cs_element_column _id=\"121\" ][cs_element_headline _id=\"122\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"123\" ][cs_element_column _id=\"124\" ][cs_element_image _id=\"125\" ][cs_element_gap _id=\"126\" ][/cs_element_column][cs_element_column _id=\"127\" ][cs_element_image _id=\"128\" ][cs_element_gap _id=\"129\" ][/cs_element_column][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][cs_element_gap _id=\"132\" ][/cs_element_column][cs_element_column _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"135\" ][cs_element_column _id=\"136\" ][cs_element_text _id=\"137\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"138\" ][cs_element_row _id=\"139\" ][cs_element_column _id=\"140\" ][cs_element_headline _id=\"141\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"142\" ][cs_element_row _id=\"143\" ][cs_element_column _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_gap _id=\"149\" ][/cs_element_column][cs_element_column _id=\"150\" ][cs_element_image _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:27:20','2024-11-25 15:27:20','',2,'https://dev.baselinestucco.com/?p=90',0,'revision','',0),
(91,1,'2024-11-25 15:38:22','2024-11-25 15:38:22','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"17\" ][cs_element_text _id=\"18\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_headline _id=\"21\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"22\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"23\" ][cs_element_headline _id=\"24\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"25\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"29\" ][cs_element_row _id=\"30\" ][cs_element_column _id=\"31\" ][cs_element_image _id=\"32\" ][cs_element_gap _id=\"33\" ][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"41\" ][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"48\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"49\" ][/cs_element_column][cs_element_column _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"52\" ][cs_element_column _id=\"53\" ][cs_element_image _id=\"54\" ][cs_element_gap _id=\"55\" ][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_headline _id=\"57\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"62\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"63\" ][cs_element_row _id=\"64\" ][cs_element_column _id=\"65\" ][cs_element_headline _id=\"66\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"67\" ][cs_element_text _id=\"68\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"69\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"70\" ][cs_element_row _id=\"71\" ][cs_element_column _id=\"72\" ][cs_element_headline _id=\"73\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"74\" ][cs_element_text _id=\"75\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][cs_element_gap _id=\"88\" ][/cs_element_column][cs_element_column _id=\"89\" ][cs_element_image _id=\"90\" ][cs_element_gap _id=\"91\" ][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"101\" ][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_headline _id=\"104\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"105\" ][cs_element_column _id=\"106\" ][cs_element_image _id=\"107\" ][cs_element_gap _id=\"108\" ][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_image _id=\"110\" ][cs_element_gap _id=\"111\" ][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_image _id=\"113\" ][cs_element_gap _id=\"114\" ][/cs_element_column][cs_element_column _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"117\" ][cs_element_column _id=\"118\" ][cs_element_text _id=\"119\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"120\" ][cs_element_row _id=\"121\" ][cs_element_column _id=\"122\" ][cs_element_headline _id=\"123\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"124\" ][cs_element_column _id=\"125\" ][cs_element_image _id=\"126\" ][cs_element_gap _id=\"127\" ][/cs_element_column][cs_element_column _id=\"128\" ][cs_element_image _id=\"129\" ][cs_element_gap _id=\"130\" ][/cs_element_column][cs_element_column _id=\"131\" ][cs_element_image _id=\"132\" ][cs_element_gap _id=\"133\" ][/cs_element_column][cs_element_column _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_text _id=\"138\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_row _id=\"140\" ][cs_element_column _id=\"141\" ][cs_element_headline _id=\"142\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"143\" ][cs_element_row _id=\"144\" ][cs_element_column _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_gap _id=\"150\" ][/cs_element_column][cs_element_column _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][cs_element_image _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:38:22','2024-11-25 15:38:22','',2,'https://dev.baselinestucco.com/?p=91',0,'revision','',0),
(92,1,'2024-11-25 15:41:32','2024-11-25 15:41:32','','6','','inherit','open','closed','','6-2','','','2024-11-25 15:41:32','2024-11-25 15:41:32','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/6-1.jpg',0,'attachment','image/jpeg',0),
(93,1,'2024-11-25 15:41:33','2024-11-25 15:41:33','','ten','','inherit','open','closed','','ten-2','','','2024-11-25 15:41:33','2024-11-25 15:41:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/ten-1.jpg',0,'attachment','image/jpeg',0),
(94,1,'2024-11-25 15:41:33','2024-11-25 15:41:33','','gol','','inherit','open','closed','','gol-2','','','2024-11-25 15:41:33','2024-11-25 15:41:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/gol-1.jpg',0,'attachment','image/jpeg',0),
(95,1,'2024-11-25 15:41:33','2024-11-25 15:41:33','','kid','','inherit','open','closed','','kid-2','','','2024-11-25 15:41:33','2024-11-25 15:41:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/kid-1.jpg',0,'attachment','image/jpeg',0),
(96,1,'2024-11-25 15:41:34','2024-11-25 15:41:34','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Amenities 2','','tco-data','closed','closed','','amenities-2','','','2024-11-25 15:41:34','2024-11-25 15:41:34','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=96',0,'cs_template','',0),
(97,1,'2024-11-25 15:42:42','2024-11-25 15:42:42','','BASELINE Stucco','','inherit','open','closed','','4l9a7867','','','2024-11-25 15:42:51','2024-11-25 15:42:51','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A7867.jpg',0,'attachment','image/jpeg',0),
(98,1,'2024-11-25 15:43:29','2024-11-25 15:43:29','','4L9A4617','','inherit','open','closed','','4l9a4617','','','2024-11-25 15:43:29','2024-11-25 15:43:29','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4617.jpg',0,'attachment','image/jpeg',0),
(99,1,'2024-11-25 15:44:06','2024-11-25 15:44:06','','4L9A4616','','inherit','open','closed','','4l9a4616','','','2024-11-25 15:44:06','2024-11-25 15:44:06','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4616.jpg',0,'attachment','image/jpeg',0),
(100,1,'2024-11-25 15:44:23','2024-11-25 15:44:23','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_layout_row _id=\"8\" ][cs_element_layout_column _id=\"9\" ][cs_element_button _id=\"10\" ][cs_element_button _id=\"11\" ][cs_content_seo]Yacht Club\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"12\" ][cs_element_button _id=\"13\" ][cs_element_button _id=\"14\" ][cs_content_seo]Courts\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"15\" ][cs_element_button _id=\"16\" ][cs_element_button _id=\"17\" ][cs_content_seo]Golf Course\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"18\" ][cs_element_button _id=\"19\" ][cs_element_button _id=\"20\" ][cs_content_seo]Country club\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"21\" ][cs_element_row _id=\"22\" ][cs_element_column _id=\"23\" ][cs_element_headline _id=\"24\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"25\" ][cs_element_text _id=\"26\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"27\" ][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Marginless Columns\\n\\n[/cs_content_seo][cs_element_line _id=\"31\" ][cs_element_text _id=\"32\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"33\" ][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"37\" ][cs_element_headline _id=\"38\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"39\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"42\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_row _id=\"44\" ][cs_element_column _id=\"45\" ][cs_element_image _id=\"46\" ][cs_element_gap _id=\"47\" ][/cs_element_column][cs_element_column _id=\"48\" ][cs_element_headline _id=\"49\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"52\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"53\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"54\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"55\" ][cs_element_column _id=\"56\" ][cs_element_headline _id=\"57\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"62\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"66\" ][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_gap _id=\"69\" ][/cs_element_column][cs_element_column _id=\"70\" ][cs_element_headline _id=\"71\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"72\" ][cs_element_headline _id=\"73\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"74\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"75\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"76\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_row _id=\"78\" ][cs_element_column _id=\"79\" ][cs_element_headline _id=\"80\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"83\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"84\" ][cs_element_row _id=\"85\" ][cs_element_column _id=\"86\" ][cs_element_headline _id=\"87\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"88\" ][cs_element_text _id=\"89\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_image _id=\"92\" ][cs_element_gap _id=\"93\" ][/cs_element_column][cs_element_column _id=\"94\" ][cs_element_image _id=\"95\" ][cs_element_gap _id=\"96\" ][/cs_element_column][cs_element_column _id=\"97\" ][cs_element_image _id=\"98\" ][cs_element_gap _id=\"99\" ][/cs_element_column][cs_element_column _id=\"100\" ][cs_element_image _id=\"101\" ][cs_element_gap _id=\"102\" ][/cs_element_column][cs_element_column _id=\"103\" ][cs_element_image _id=\"104\" ][cs_element_gap _id=\"105\" ][/cs_element_column][cs_element_column _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"108\" ][cs_element_column _id=\"109\" ][cs_element_text _id=\"110\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"111\" ][cs_element_row _id=\"112\" ][cs_element_column _id=\"113\" ][cs_element_headline _id=\"114\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"115\" ][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_headline _id=\"118\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"119\" ][cs_element_column _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_gap _id=\"122\" ][/cs_element_column][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][cs_element_gap _id=\"125\" ][/cs_element_column][cs_element_column _id=\"126\" ][cs_element_image _id=\"127\" ][cs_element_gap _id=\"128\" ][/cs_element_column][cs_element_column _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"131\" ][cs_element_column _id=\"132\" ][cs_element_text _id=\"133\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"134\" ][cs_element_row _id=\"135\" ][cs_element_column _id=\"136\" ][cs_element_headline _id=\"137\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"138\" ][cs_element_column _id=\"139\" ][cs_element_image _id=\"140\" ][cs_element_gap _id=\"141\" ][/cs_element_column][cs_element_column _id=\"142\" ][cs_element_image _id=\"143\" ][cs_element_gap _id=\"144\" ][/cs_element_column][cs_element_column _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_gap _id=\"147\" ][/cs_element_column][cs_element_column _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"150\" ][cs_element_column _id=\"151\" ][cs_element_text _id=\"152\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"153\" ][cs_element_row _id=\"154\" ][cs_element_column _id=\"155\" ][cs_element_headline _id=\"156\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"157\" ][cs_element_row _id=\"158\" ][cs_element_column _id=\"159\" ][cs_element_image _id=\"160\" ][cs_element_image _id=\"161\" ][cs_element_image _id=\"162\" ][cs_element_image _id=\"163\" ][cs_element_gap _id=\"164\" ][/cs_element_column][cs_element_column _id=\"165\" ][cs_element_image _id=\"166\" ][cs_element_image _id=\"167\" ][cs_element_image _id=\"168\" ][cs_element_image _id=\"169\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:44:23','2024-11-25 15:44:23','',2,'https://dev.baselinestucco.com/?p=100',0,'revision','',0),
(101,1,'2024-11-25 15:46:06','2024-11-25 15:46:06','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"17\" ][cs_element_text _id=\"18\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_headline _id=\"21\" ][cs_content_seo]One\\n\\n[/cs_content_seo][cs_element_text _id=\"22\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"23\" ][cs_element_headline _id=\"24\" ][cs_content_seo]Two\\n\\n[/cs_content_seo][cs_element_text _id=\"25\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"29\" ][cs_element_row _id=\"30\" ][cs_element_column _id=\"31\" ][cs_element_image _id=\"32\" ][cs_element_gap _id=\"33\" ][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"41\" ][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"48\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"49\" ][/cs_element_column][cs_element_column _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"52\" ][cs_element_column _id=\"53\" ][cs_element_image _id=\"54\" ][cs_element_gap _id=\"55\" ][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_headline _id=\"57\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"60\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"61\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"62\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"63\" ][cs_element_row _id=\"64\" ][cs_element_column _id=\"65\" ][cs_element_headline _id=\"66\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"67\" ][cs_element_text _id=\"68\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"69\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"70\" ][cs_element_row _id=\"71\" ][cs_element_column _id=\"72\" ][cs_element_headline _id=\"73\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"74\" ][cs_element_text _id=\"75\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][cs_element_gap _id=\"88\" ][/cs_element_column][cs_element_column _id=\"89\" ][cs_element_image _id=\"90\" ][cs_element_gap _id=\"91\" ][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"101\" ][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_headline _id=\"104\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"105\" ][cs_element_column _id=\"106\" ][cs_element_image _id=\"107\" ][cs_element_gap _id=\"108\" ][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_image _id=\"110\" ][cs_element_gap _id=\"111\" ][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_image _id=\"113\" ][cs_element_gap _id=\"114\" ][/cs_element_column][cs_element_column _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"117\" ][cs_element_column _id=\"118\" ][cs_element_text _id=\"119\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"120\" ][cs_element_row _id=\"121\" ][cs_element_column _id=\"122\" ][cs_element_headline _id=\"123\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"124\" ][cs_element_column _id=\"125\" ][cs_element_image _id=\"126\" ][cs_element_gap _id=\"127\" ][/cs_element_column][cs_element_column _id=\"128\" ][cs_element_image _id=\"129\" ][cs_element_gap _id=\"130\" ][/cs_element_column][cs_element_column _id=\"131\" ][cs_element_image _id=\"132\" ][cs_element_gap _id=\"133\" ][/cs_element_column][cs_element_column _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_text _id=\"138\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_row _id=\"140\" ][cs_element_column _id=\"141\" ][cs_element_headline _id=\"142\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"143\" ][cs_element_row _id=\"144\" ][cs_element_column _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_gap _id=\"150\" ][/cs_element_column][cs_element_column _id=\"151\" ][cs_element_image _id=\"152\" ][cs_element_image _id=\"153\" ][cs_element_image _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:46:06','2024-11-25 15:46:06','',2,'https://dev.baselinestucco.com/?p=101',0,'revision','',0),
(102,1,'2024-11-25 15:53:07','2024-11-25 15:53:07','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]Experience &amp; Certified\\n\\n[/cs_content_seo][cs_element_text _id=\"16\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]We guaranteeour work\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Three\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_image _id=\"28\" ][cs_element_gap _id=\"29\" ][/cs_element_column][cs_element_column _id=\"30\" ][cs_element_headline _id=\"31\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_element_headline _id=\"33\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"35\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"36\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"37\" ][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"45\" ][/cs_element_column][cs_element_column _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_image _id=\"50\" ][cs_element_gap _id=\"51\" ][/cs_element_column][cs_element_column _id=\"52\" ][cs_element_headline _id=\"53\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"56\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"57\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"58\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"65\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"66\" ][cs_element_row _id=\"67\" ][cs_element_column _id=\"68\" ][cs_element_headline _id=\"69\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"72\" ][cs_element_column _id=\"73\" ][cs_element_image _id=\"74\" ][cs_element_gap _id=\"75\" ][/cs_element_column][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_text _id=\"92\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_headline _id=\"96\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_image _id=\"103\" ][cs_element_gap _id=\"104\" ][/cs_element_column][cs_element_column _id=\"105\" ][cs_element_image _id=\"106\" ][cs_element_gap _id=\"107\" ][/cs_element_column][cs_element_column _id=\"108\" ][cs_element_image _id=\"109\" ][cs_element_gap _id=\"110\" ][/cs_element_column][cs_element_column _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_text _id=\"115\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"116\" ][cs_element_row _id=\"117\" ][cs_element_column _id=\"118\" ][cs_element_headline _id=\"119\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"120\" ][cs_element_column _id=\"121\" ][cs_element_image _id=\"122\" ][cs_element_gap _id=\"123\" ][/cs_element_column][cs_element_column _id=\"124\" ][cs_element_image _id=\"125\" ][cs_element_gap _id=\"126\" ][/cs_element_column][cs_element_column _id=\"127\" ][cs_element_image _id=\"128\" ][cs_element_gap _id=\"129\" ][/cs_element_column][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_text _id=\"134\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"135\" ][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_headline _id=\"138\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_row _id=\"140\" ][cs_element_column _id=\"141\" ][cs_element_image _id=\"142\" ][cs_element_image _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_gap _id=\"146\" ][/cs_element_column][cs_element_column _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_image _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:53:07','2024-11-25 15:53:07','',2,'https://dev.baselinestucco.com/?p=102',0,'revision','',0),
(103,1,'2024-11-25 15:55:48','2024-11-25 15:55:48','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"16\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"25\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"26\" ][cs_element_row _id=\"27\" ][cs_element_column _id=\"28\" ][cs_element_image _id=\"29\" ][cs_element_gap _id=\"30\" ][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"35\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"36\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"37\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_headline _id=\"40\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"46\" ][/cs_element_column][cs_element_column _id=\"47\" ][cs_element_image _id=\"48\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_image _id=\"51\" ][cs_element_gap _id=\"52\" ][/cs_element_column][cs_element_column _id=\"53\" ][cs_element_headline _id=\"54\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"57\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"58\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"59\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"60\" ][cs_element_row _id=\"61\" ][cs_element_column _id=\"62\" ][cs_element_headline _id=\"63\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"66\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"67\" ][cs_element_row _id=\"68\" ][cs_element_column _id=\"69\" ][cs_element_headline _id=\"70\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"71\" ][cs_element_text _id=\"72\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"73\" ][cs_element_column _id=\"74\" ][cs_element_image _id=\"75\" ][cs_element_gap _id=\"76\" ][/cs_element_column][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][cs_element_gap _id=\"88\" ][/cs_element_column][cs_element_column _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"91\" ][cs_element_column _id=\"92\" ][cs_element_text _id=\"93\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"94\" ][cs_element_row _id=\"95\" ][cs_element_column _id=\"96\" ][cs_element_headline _id=\"97\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"98\" ][cs_element_row _id=\"99\" ][cs_element_column _id=\"100\" ][cs_element_headline _id=\"101\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_image _id=\"104\" ][cs_element_gap _id=\"105\" ][/cs_element_column][cs_element_column _id=\"106\" ][cs_element_image _id=\"107\" ][cs_element_gap _id=\"108\" ][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_image _id=\"110\" ][cs_element_gap _id=\"111\" ][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"114\" ][cs_element_column _id=\"115\" ][cs_element_text _id=\"116\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_row _id=\"118\" ][cs_element_column _id=\"119\" ][cs_element_headline _id=\"120\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"121\" ][cs_element_column _id=\"122\" ][cs_element_image _id=\"123\" ][cs_element_gap _id=\"124\" ][/cs_element_column][cs_element_column _id=\"125\" ][cs_element_image _id=\"126\" ][cs_element_gap _id=\"127\" ][/cs_element_column][cs_element_column _id=\"128\" ][cs_element_image _id=\"129\" ][cs_element_gap _id=\"130\" ][/cs_element_column][cs_element_column _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"133\" ][cs_element_column _id=\"134\" ][cs_element_text _id=\"135\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"136\" ][cs_element_row _id=\"137\" ][cs_element_column _id=\"138\" ][cs_element_headline _id=\"139\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"140\" ][cs_element_row _id=\"141\" ][cs_element_column _id=\"142\" ][cs_element_image _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_gap _id=\"147\" ][/cs_element_column][cs_element_column _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_image _id=\"150\" ][cs_element_image _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:55:48','2024-11-25 15:55:48','',2,'https://dev.baselinestucco.com/?p=103',0,'revision','',0),
(104,1,'2024-11-25 15:57:31','2024-11-25 15:57:31','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Why Choose Baseline Stucco?\\n\\n[/cs_content_seo][cs_element_line _id=\"11\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"12\" ][cs_element_column _id=\"13\" ][cs_element_headline _id=\"14\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"15\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"16\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"17\" ][cs_element_headline _id=\"18\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"19\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"21\" ][cs_element_headline _id=\"22\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"23\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_image _id=\"28\" ][cs_element_gap _id=\"29\" ][/cs_element_column][cs_element_column _id=\"30\" ][cs_element_headline _id=\"31\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_element_headline _id=\"33\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"35\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"36\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"37\" ][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"45\" ][/cs_element_column][cs_element_column _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_image _id=\"50\" ][cs_element_gap _id=\"51\" ][/cs_element_column][cs_element_column _id=\"52\" ][cs_element_headline _id=\"53\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"56\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"57\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"58\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"65\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"66\" ][cs_element_row _id=\"67\" ][cs_element_column _id=\"68\" ][cs_element_headline _id=\"69\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"72\" ][cs_element_column _id=\"73\" ][cs_element_image _id=\"74\" ][cs_element_gap _id=\"75\" ][/cs_element_column][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_text _id=\"92\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_headline _id=\"96\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_image _id=\"103\" ][cs_element_gap _id=\"104\" ][/cs_element_column][cs_element_column _id=\"105\" ][cs_element_image _id=\"106\" ][cs_element_gap _id=\"107\" ][/cs_element_column][cs_element_column _id=\"108\" ][cs_element_image _id=\"109\" ][cs_element_gap _id=\"110\" ][/cs_element_column][cs_element_column _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_text _id=\"115\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"116\" ][cs_element_row _id=\"117\" ][cs_element_column _id=\"118\" ][cs_element_headline _id=\"119\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"120\" ][cs_element_column _id=\"121\" ][cs_element_image _id=\"122\" ][cs_element_gap _id=\"123\" ][/cs_element_column][cs_element_column _id=\"124\" ][cs_element_image _id=\"125\" ][cs_element_gap _id=\"126\" ][/cs_element_column][cs_element_column _id=\"127\" ][cs_element_image _id=\"128\" ][cs_element_gap _id=\"129\" ][/cs_element_column][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_text _id=\"134\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"135\" ][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_headline _id=\"138\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_row _id=\"140\" ][cs_element_column _id=\"141\" ][cs_element_image _id=\"142\" ][cs_element_image _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_gap _id=\"146\" ][/cs_element_column][cs_element_column _id=\"147\" ][cs_element_image _id=\"148\" ][cs_element_image _id=\"149\" ][cs_element_image _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:57:31','2024-11-25 15:57:31','',2,'https://dev.baselinestucco.com/?p=104',0,'revision','',0),
(105,1,'2024-11-25 15:58:55','2024-11-25 15:58:55','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"11\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"12\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"13\" ][cs_element_headline _id=\"14\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"15\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"16\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"17\" ][cs_element_headline _id=\"18\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"19\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"21\" ][cs_element_row _id=\"22\" ][cs_element_column _id=\"23\" ][cs_element_image _id=\"24\" ][cs_element_gap _id=\"25\" ][/cs_element_column][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"31\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"33\" ][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][cs_element_gap _id=\"41\" ][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_image _id=\"43\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"44\" ][cs_element_column _id=\"45\" ][cs_element_image _id=\"46\" ][cs_element_gap _id=\"47\" ][/cs_element_column][cs_element_column _id=\"48\" ][cs_element_headline _id=\"49\" ][cs_content_seo]Summary\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"52\" ][cs_content_seo]Feature one\\n\\n[/cs_content_seo][cs_element_headline _id=\"53\" ][cs_content_seo]Feature two\\n\\n[/cs_content_seo][cs_element_headline _id=\"54\" ][cs_content_seo]Feature three\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"55\" ][cs_element_row _id=\"56\" ][cs_element_column _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"59\" ][cs_element_text _id=\"60\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"61\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_row _id=\"63\" ][cs_element_column _id=\"64\" ][cs_element_headline _id=\"65\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"68\" ][cs_element_column _id=\"69\" ][cs_element_image _id=\"70\" ][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_gap _id=\"80\" ][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_image _id=\"82\" ][cs_element_gap _id=\"83\" ][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"86\" ][cs_element_column _id=\"87\" ][cs_element_text _id=\"88\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"89\" ][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_headline _id=\"92\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_headline _id=\"96\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_image _id=\"99\" ][cs_element_gap _id=\"100\" ][/cs_element_column][cs_element_column _id=\"101\" ][cs_element_image _id=\"102\" ][cs_element_gap _id=\"103\" ][/cs_element_column][cs_element_column _id=\"104\" ][cs_element_image _id=\"105\" ][cs_element_gap _id=\"106\" ][/cs_element_column][cs_element_column _id=\"107\" ][cs_element_image _id=\"108\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_text _id=\"111\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_headline _id=\"115\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_image _id=\"118\" ][cs_element_gap _id=\"119\" ][/cs_element_column][cs_element_column _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_gap _id=\"122\" ][/cs_element_column][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][cs_element_gap _id=\"125\" ][/cs_element_column][cs_element_column _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"128\" ][cs_element_column _id=\"129\" ][cs_element_text _id=\"130\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_headline _id=\"134\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"135\" ][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_image _id=\"139\" ][cs_element_image _id=\"140\" ][cs_element_image _id=\"141\" ][cs_element_gap _id=\"142\" ][/cs_element_column][cs_element_column _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 15:58:55','2024-11-25 15:58:55','',2,'https://dev.baselinestucco.com/?p=105',0,'revision','',0),
(106,1,'2024-11-25 16:05:26','2024-11-25 16:05:26','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Strength in Every Finish, Pride in Every Detail.\\n\\n[/cs_content_seo][cs_element_button _id=\"5\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"6\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"7\" ][cs_element_row _id=\"8\" ][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_gap _id=\"11\" ][/cs_element_column][cs_element_column _id=\"12\" ][cs_element_headline _id=\"13\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"14\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"15\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"16\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"17\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"25\" ][/cs_element_column][cs_element_column _id=\"26\" ][cs_element_image _id=\"27\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_headline _id=\"33\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"35\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"36\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"37\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"38\" ][cs_element_row _id=\"39\" ][cs_element_column _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"42\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"46\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"48\" ][cs_element_headline _id=\"49\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_row _id=\"53\" ][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"56\" ][cs_element_text _id=\"57\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"58\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"65\" ][cs_element_column _id=\"66\" ][cs_element_image _id=\"67\" ][cs_element_gap _id=\"68\" ][/cs_element_column][cs_element_column _id=\"69\" ][cs_element_image _id=\"70\" ][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_gap _id=\"80\" ][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_text _id=\"85\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"86\" ][cs_element_row _id=\"87\" ][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"90\" ][cs_element_row _id=\"91\" ][cs_element_column _id=\"92\" ][cs_element_headline _id=\"93\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_image _id=\"96\" ][cs_element_gap _id=\"97\" ][/cs_element_column][cs_element_column _id=\"98\" ][cs_element_image _id=\"99\" ][cs_element_gap _id=\"100\" ][/cs_element_column][cs_element_column _id=\"101\" ][cs_element_image _id=\"102\" ][cs_element_gap _id=\"103\" ][/cs_element_column][cs_element_column _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"106\" ][cs_element_column _id=\"107\" ][cs_element_text _id=\"108\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"109\" ][cs_element_row _id=\"110\" ][cs_element_column _id=\"111\" ][cs_element_headline _id=\"112\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_image _id=\"115\" ][cs_element_gap _id=\"116\" ][/cs_element_column][cs_element_column _id=\"117\" ][cs_element_image _id=\"118\" ][cs_element_gap _id=\"119\" ][/cs_element_column][cs_element_column _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_gap _id=\"122\" ][/cs_element_column][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"125\" ][cs_element_column _id=\"126\" ][cs_element_text _id=\"127\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"128\" ][cs_element_row _id=\"129\" ][cs_element_column _id=\"130\" ][cs_element_headline _id=\"131\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"132\" ][cs_element_row _id=\"133\" ][cs_element_column _id=\"134\" ][cs_element_image _id=\"135\" ][cs_element_image _id=\"136\" ][cs_element_image _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_gap _id=\"139\" ][/cs_element_column][cs_element_column _id=\"140\" ][cs_element_image _id=\"141\" ][cs_element_image _id=\"142\" ][cs_element_image _id=\"143\" ][cs_element_image _id=\"144\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 16:05:26','2024-11-25 16:05:26','',2,'https://dev.baselinestucco.com/?p=106',0,'revision','',0),
(107,1,'2024-11-25 16:05:44','2024-11-25 16:05:44','','4L9A4615','','inherit','open','closed','','4l9a4615','','','2024-11-25 16:05:44','2024-11-25 16:05:44','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4615.jpg',0,'attachment','image/jpeg',0),
(108,1,'2024-11-25 16:05:56','2024-11-25 16:05:56','','4L9A3012','','inherit','open','closed','','4l9a3012','','','2024-11-25 16:05:56','2024-11-25 16:05:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3012.jpg',0,'attachment','image/jpeg',0),
(109,1,'2024-11-25 16:06:00','2024-11-25 16:06:00','','4L9A3011','','inherit','open','closed','','4l9a3011','','','2024-11-25 16:06:00','2024-11-25 16:06:00','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3011.jpg',0,'attachment','image/jpeg',0),
(110,1,'2024-11-25 16:06:05','2024-11-25 16:06:05','','4L9A3013','','inherit','open','closed','','4l9a3013','','','2024-11-25 16:06:05','2024-11-25 16:06:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3013.jpg',0,'attachment','image/jpeg',0),
(111,1,'2024-11-25 16:06:11','2024-11-25 16:06:11','','4L9A3010','','inherit','open','closed','','4l9a3010','','','2024-11-25 16:06:11','2024-11-25 16:06:11','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3010.jpg',0,'attachment','image/jpeg',0),
(112,1,'2024-11-25 16:06:16','2024-11-25 16:06:16','','4L9A3009','','inherit','open','closed','','4l9a3009-2','','','2024-11-25 16:06:16','2024-11-25 16:06:16','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3009-1.jpg',0,'attachment','image/jpeg',0),
(113,1,'2024-11-25 16:06:20','2024-11-25 16:06:20','','4L9A3006','','inherit','open','closed','','4l9a3006-2','','','2024-11-25 16:06:20','2024-11-25 16:06:20','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3006-1.jpg',0,'attachment','image/jpeg',0),
(114,1,'2024-11-25 16:06:26','2024-11-25 16:06:26','','4L9A3003','','inherit','open','closed','','4l9a3003','','','2024-11-25 16:06:26','2024-11-25 16:06:26','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3003.jpg',0,'attachment','image/jpeg',0),
(115,1,'2024-11-25 16:06:31','2024-11-25 16:06:31','','4L9A3002','','inherit','open','closed','','4l9a3002','','','2024-11-25 16:06:31','2024-11-25 16:06:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A3002.jpg',0,'attachment','image/jpeg',0),
(116,1,'2024-11-25 16:06:36','2024-11-25 16:06:36','','4L9A2998','','inherit','open','closed','','4l9a2998','','','2024-11-25 16:06:36','2024-11-25 16:06:36','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A2998.jpg',0,'attachment','image/jpeg',0),
(117,1,'2024-11-25 16:06:42','2024-11-25 16:06:42','','4L9A4634-Edit','','inherit','open','closed','','4l9a4634-edit','','','2024-11-25 16:06:42','2024-11-25 16:06:42','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4634-Edit.jpg',0,'attachment','image/jpeg',0),
(118,1,'2024-11-25 16:06:49','2024-11-25 16:06:49','','4L9A4633','','inherit','open','closed','','4l9a4633','','','2024-11-25 16:06:49','2024-11-25 16:06:49','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4633.jpg',0,'attachment','image/jpeg',0),
(119,1,'2024-11-25 16:06:56','2024-11-25 16:06:56','','4L9A4632','','inherit','open','closed','','4l9a4632','','','2024-11-25 16:06:56','2024-11-25 16:06:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4632.jpg',0,'attachment','image/jpeg',0),
(120,1,'2024-11-25 16:07:04','2024-11-25 16:07:04','','4L9A4630','','inherit','open','closed','','4l9a4630','','','2024-11-25 16:07:04','2024-11-25 16:07:04','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4630.jpg',0,'attachment','image/jpeg',0),
(121,1,'2024-11-25 16:07:11','2024-11-25 16:07:11','','4L9A4629','','inherit','open','closed','','4l9a4629','','','2024-11-25 16:07:11','2024-11-25 16:07:11','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4629.jpg',0,'attachment','image/jpeg',0),
(122,1,'2024-11-25 16:07:18','2024-11-25 16:07:18','','4L9A4837','','inherit','open','closed','','4l9a4837','','','2024-11-25 16:07:18','2024-11-25 16:07:18','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4837.jpg',0,'attachment','image/jpeg',0),
(123,1,'2024-11-25 16:07:24','2024-11-25 16:07:24','','4L9A4836','','inherit','open','closed','','4l9a4836','','','2024-11-25 16:07:24','2024-11-25 16:07:24','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4836.jpg',0,'attachment','image/jpeg',0),
(124,1,'2024-11-25 16:07:31','2024-11-25 16:07:31','','4L9A4835','','inherit','open','closed','','4l9a4835','','','2024-11-25 16:07:31','2024-11-25 16:07:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4835.jpg',0,'attachment','image/jpeg',0),
(125,1,'2024-11-26 00:10:30','2024-11-25 16:17:52',' ','','','publish','closed','closed','','125','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/?p=125',1,'nav_menu_item','',0),
(126,1,'2024-11-26 00:10:30','2024-11-25 16:18:53',' ','','','publish','closed','closed','','126','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/25/126/',7,'nav_menu_item','',0),
(127,1,'2024-11-26 00:10:30','2024-11-25 16:19:03',' ','','','publish','closed','closed','','127','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/25/127/',5,'nav_menu_item','',0),
(128,1,'2024-11-26 00:10:30','2024-11-25 16:19:18',' ','','','publish','closed','closed','','128','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/25/128/',8,'nav_menu_item','',0),
(129,1,'2024-11-25 16:19:18','2024-11-25 16:19:18','<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://dev.baselinestucco.com.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-11-25 16:19:18','2024-11-25 16:19:18','',3,'https://dev.baselinestucco.com/?p=129',0,'revision','',0),
(130,1,'2024-11-25 16:34:53','2024-11-25 16:34:53','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_headline _id=\"44\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"45\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"46\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"51\" ][cs_element_headline _id=\"52\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"53\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"55\" ][cs_element_row _id=\"56\" ][cs_element_column _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"59\" ][cs_element_text _id=\"60\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"61\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_row _id=\"63\" ][cs_element_column _id=\"64\" ][cs_element_headline _id=\"65\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"68\" ][cs_element_column _id=\"69\" ][cs_element_image _id=\"70\" ][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_gap _id=\"80\" ][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_image _id=\"82\" ][cs_element_gap _id=\"83\" ][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"86\" ][cs_element_column _id=\"87\" ][cs_element_text _id=\"88\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"89\" ][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_headline _id=\"92\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_image _id=\"95\" ][cs_element_gap _id=\"96\" ][/cs_element_column][cs_element_column _id=\"97\" ][cs_element_image _id=\"98\" ][cs_element_gap _id=\"99\" ][/cs_element_column][cs_element_column _id=\"100\" ][cs_element_image _id=\"101\" ][cs_element_gap _id=\"102\" ][/cs_element_column][cs_element_column _id=\"103\" ][cs_element_image _id=\"104\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"105\" ][cs_element_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_headline _id=\"111\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"112\" ][cs_element_column _id=\"113\" ][cs_element_image _id=\"114\" ][cs_element_gap _id=\"115\" ][/cs_element_column][cs_element_column _id=\"116\" ][cs_element_image _id=\"117\" ][cs_element_gap _id=\"118\" ][/cs_element_column][cs_element_column _id=\"119\" ][cs_element_image _id=\"120\" ][cs_element_gap _id=\"121\" ][/cs_element_column][cs_element_column _id=\"122\" ][cs_element_image _id=\"123\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"124\" ][cs_element_column _id=\"125\" ][cs_element_text _id=\"126\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"127\" ][cs_element_row _id=\"128\" ][cs_element_column _id=\"129\" ][cs_element_headline _id=\"130\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_image _id=\"134\" ][cs_element_image _id=\"135\" ][cs_element_image _id=\"136\" ][cs_element_image _id=\"137\" ][cs_element_gap _id=\"138\" ][/cs_element_column][cs_element_column _id=\"139\" ][cs_element_image _id=\"140\" ][cs_element_image _id=\"141\" ][cs_element_image _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 16:34:53','2024-11-25 16:34:53','',2,'https://dev.baselinestucco.com/?p=130',0,'revision','',0),
(131,1,'2024-11-26 00:09:40','2024-11-25 16:39:20',' ','','','publish','closed','closed','','131','','','2024-11-26 00:09:40','2024-11-26 00:09:40','',0,'https://dev.baselinestucco.com/?p=131',1,'nav_menu_item','',0),
(132,1,'2024-11-26 00:09:40','2024-11-25 16:39:20',' ','','','publish','closed','closed','','132','','','2024-11-26 00:09:40','2024-11-26 00:09:40','',0,'https://dev.baselinestucco.com/?p=132',3,'nav_menu_item','',0),
(133,1,'2024-11-25 11:47:12','2024-11-25 11:47:12','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]EIFS Installation\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]01. Enhances energy efficiency with R-values ranging from 6 to 12+.\n02. Reduces heating and cooling costs by insulating the building exterior.\n03. Lightweight and flexible, minimizing structural stress on the building.\n04. Provides a sleek, modern appearance with customizable textures.\n05. Highly weather-resistant, protecting against moisture and temperature changes.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"31\" ][cs_element_row _id=\"32\" ][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Residential Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]01. Adds timeless beauty with customizable textures and finishes.\n02. Increases home value with durable, low-maintenance exterior surfaces.\n03. Protects against the elements with weather-resistant materials.\n04. Improves energy efficiency with natural insulating properties.\n05. Available in a variety of colors and textures to match your home&rsquo;s aesthetic.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Commercial Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"46\" ][cs_content_seo]01. Enhances the professional appearance of commercial properties.\n02. Durable and long-lasting, reducing maintenance costs.\n03. Resistant to cracking, fading, and weather damage.\n04. Improves energy efficiency for lower operating costs.\n05. Versatile design options to suit any business style or branding.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"47\" ][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Renovations and Repairs\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Revitalize your property with expert stucco renovations and repairs. From repairing cracks and damage to modernizing outdated finishes, we specialize in breathing new life into existing structures. Our team ensures a seamless match between new and old finishes, leaving your property looking refreshed and flawless.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"52\" ][cs_element_headline _id=\"53\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]01. Restores damaged stucco to like-new condition with seamless results.\n02. Prevents further structural issues by addressing cracks and wear.\n03. Modernizes outdated finishes to align with current design trends.\n04. Improves curb appeal, increasing property value.\n05. Ensures long-lasting results with high-quality materials and techniques.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"55\" ][cs_element_row _id=\"56\" ][cs_element_column _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"59\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"63\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"64\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"65\" ][cs_element_headline _id=\"66\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"67\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','publish','closed','closed','','services','','','2024-11-26 18:29:49','2024-11-26 18:29:49','',0,'https://dev.baselinestucco.com/?page_id=133',0,'page','',0),
(134,1,'2024-11-25 16:39:44','2024-11-25 16:39:44','[cs_content _p=\'133\'][/cs_content]','Untitled Page','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 16:39:44','2024-11-25 16:39:44','',133,'https://dev.baselinestucco.com/?p=134',0,'revision','',0),
(135,1,'2024-11-25 16:40:12','2024-11-25 16:40:12','[cs_content _p=\'133\'][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 16:40:12','2024-11-25 16:40:12','',133,'https://dev.baselinestucco.com/?p=135',0,'revision','',0),
(136,1,'2024-11-25 11:47:26','2024-11-25 11:47:26','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Commerical Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','publish','closed','closed','','projects','','','2024-11-26 17:00:58','2024-11-26 17:00:58','',0,'https://dev.baselinestucco.com/?page_id=136',0,'page','',0),
(137,1,'2024-11-25 16:40:15','2024-11-25 16:40:15','[cs_content _p=\'136\'][/cs_content]','Untitled Page','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 16:40:15','2024-11-25 16:40:15','',136,'https://dev.baselinestucco.com/?p=137',0,'revision','',0),
(138,1,'2024-11-25 16:40:23','2024-11-25 16:40:23','[cs_content _p=\'136\'][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 16:40:23','2024-11-25 16:40:23','',136,'https://dev.baselinestucco.com/?p=138',0,'revision','',0),
(139,1,'2024-11-26 00:10:30','2024-11-25 16:46:28',' ','','','publish','closed','closed','','139','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/25/139/',3,'nav_menu_item','',0),
(142,1,'2024-11-25 22:57:43','2024-11-25 16:47:08',' ','','','publish','closed','closed','','142','','','2024-11-25 22:57:43','2024-11-25 22:57:43','',0,'https://dev.baselinestucco.com/?p=142',1,'nav_menu_item','',0),
(143,1,'2024-11-25 16:49:52','2024-11-25 16:49:52','','Baseline Construction (200 x 200 px)','','inherit','open','closed','','baseline-construction-200-x-200-px','','','2024-11-25 16:49:52','2024-11-25 16:49:52','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-200-x-200-px.png',0,'attachment','image/png',0),
(144,1,'2024-11-25 16:53:27','2024-11-25 16:53:27','','Baseline Construction (200 x 200 px)','','inherit','open','closed','','baseline-construction-200-x-200-px-2','','','2024-11-25 16:53:27','2024-11-25 16:53:27','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-200-x-200-px-1.png',0,'attachment','image/png',0),
(145,1,'2024-11-25 17:17:13','2024-11-25 17:17:13','','hyundai_baseline_stucco','','inherit','open','closed','','hyundai_baseline_stucco','','','2024-11-25 17:17:13','2024-11-25 17:17:13','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/hyundai_baseline_stucco.gif',0,'attachment','image/gif',0),
(146,1,'2024-11-25 17:22:57','2024-11-25 17:22:57','','Baseline Construction','','inherit','open','closed','','bll','','','2024-11-25 17:40:21','2024-11-25 17:40:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/bll.gif',0,'attachment','image/gif',0),
(147,1,'2024-11-25 17:39:13','2024-11-25 17:39:13','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"51\" ][cs_element_headline _id=\"52\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"53\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"65\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"66\" ][cs_element_row _id=\"67\" ][cs_element_column _id=\"68\" ][cs_element_headline _id=\"69\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"72\" ][cs_element_column _id=\"73\" ][cs_element_image _id=\"74\" ][cs_element_gap _id=\"75\" ][/cs_element_column][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_text _id=\"92\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_headline _id=\"96\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_image _id=\"99\" ][cs_element_gap _id=\"100\" ][/cs_element_column][cs_element_column _id=\"101\" ][cs_element_image _id=\"102\" ][cs_element_gap _id=\"103\" ][/cs_element_column][cs_element_column _id=\"104\" ][cs_element_image _id=\"105\" ][cs_element_gap _id=\"106\" ][/cs_element_column][cs_element_column _id=\"107\" ][cs_element_image _id=\"108\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_text _id=\"111\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_headline _id=\"115\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_image _id=\"118\" ][cs_element_gap _id=\"119\" ][/cs_element_column][cs_element_column _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_gap _id=\"122\" ][/cs_element_column][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][cs_element_gap _id=\"125\" ][/cs_element_column][cs_element_column _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"128\" ][cs_element_column _id=\"129\" ][cs_element_text _id=\"130\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_headline _id=\"134\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"135\" ][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_image _id=\"139\" ][cs_element_image _id=\"140\" ][cs_element_image _id=\"141\" ][cs_element_gap _id=\"142\" ][/cs_element_column][cs_element_column _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 17:39:13','2024-11-25 17:39:13','',2,'https://dev.baselinestucco.com/?p=147',0,'revision','',0),
(148,1,'2024-11-25 17:39:53','2024-11-25 17:39:53','','Baseline Construction','','inherit','open','closed','','2','','','2024-11-25 17:40:01','2024-11-25 17:40:01','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/2.gif',0,'attachment','image/gif',0),
(149,1,'2024-11-25 17:45:05','2024-11-25 17:45:05','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"51\" ][cs_element_headline _id=\"52\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"53\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Feature Section\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][cs_element_image _id=\"65\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"66\" ][cs_element_row _id=\"67\" ][cs_element_column _id=\"68\" ][cs_element_headline _id=\"69\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][cs_element_line _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare volutpat, velit turpis scelerisque purus, quis mollis velit purus ac massa. Fusce quis urna metus. Donec et lacus et sem lacinia cursus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"72\" ][cs_element_column _id=\"73\" ][cs_element_image _id=\"74\" ][cs_element_gap _id=\"75\" ][/cs_element_column][cs_element_column _id=\"76\" ][cs_element_image _id=\"77\" ][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_gap _id=\"81\" ][/cs_element_column][cs_element_column _id=\"82\" ][cs_element_image _id=\"83\" ][cs_element_gap _id=\"84\" ][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_image _id=\"86\" ][cs_element_gap _id=\"87\" ][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_text _id=\"92\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_headline _id=\"96\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_image _id=\"99\" ][cs_element_gap _id=\"100\" ][/cs_element_column][cs_element_column _id=\"101\" ][cs_element_image _id=\"102\" ][cs_element_gap _id=\"103\" ][/cs_element_column][cs_element_column _id=\"104\" ][cs_element_image _id=\"105\" ][cs_element_gap _id=\"106\" ][/cs_element_column][cs_element_column _id=\"107\" ][cs_element_image _id=\"108\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_text _id=\"111\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_row _id=\"113\" ][cs_element_column _id=\"114\" ][cs_element_headline _id=\"115\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"116\" ][cs_element_column _id=\"117\" ][cs_element_image _id=\"118\" ][cs_element_gap _id=\"119\" ][/cs_element_column][cs_element_column _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_gap _id=\"122\" ][/cs_element_column][cs_element_column _id=\"123\" ][cs_element_image _id=\"124\" ][cs_element_gap _id=\"125\" ][/cs_element_column][cs_element_column _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"128\" ][cs_element_column _id=\"129\" ][cs_element_text _id=\"130\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_row _id=\"132\" ][cs_element_column _id=\"133\" ][cs_element_headline _id=\"134\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"135\" ][cs_element_row _id=\"136\" ][cs_element_column _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_image _id=\"139\" ][cs_element_image _id=\"140\" ][cs_element_image _id=\"141\" ][cs_element_gap _id=\"142\" ][/cs_element_column][cs_element_column _id=\"143\" ][cs_element_image _id=\"144\" ][cs_element_image _id=\"145\" ][cs_element_image _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 17:45:05','2024-11-25 17:45:05','',2,'https://dev.baselinestucco.com/?p=149',0,'revision','',0),
(150,1,'2024-11-26 16:57:02','2024-11-26 16:57:02','[cs_content _p=\'150\'][/cs_content]','Untitled Page','','trash','closed','closed','','__trashed','','','2024-11-26 16:57:02','2024-11-26 16:57:02','',0,'https://dev.baselinestucco.com/?page_id=150',0,'page','',0),
(151,1,'2024-11-25 17:45:49','2024-11-25 17:45:49','[cs_content _p=\'150\'][/cs_content]','Untitled Page','','inherit','closed','closed','','150-revision-v1','','','2024-11-25 17:45:49','2024-11-25 17:45:49','',150,'https://dev.baselinestucco.com/?p=151',0,'revision','',0),
(152,1,'2024-11-25 17:45:56','2024-11-25 17:45:56','{\"settings\":{\"customCSS\":\"\",\"customJS\":\"\",\"assignments\":[],\"layout_type\":\"header\",\"assignment_priority\":0,\"general_featured_image\":\"\",\"multi_region\":false},\"regions\":[]}','Untitled Header','','trash','closed','closed','','untitled-header-2__trashed','','','2024-11-26 16:41:35','2024-11-26 16:41:35','',0,'https://dev.baselinestucco.com/?post_type=cs_header&#038;p=152',0,'cs_header','',0),
(153,1,'2024-11-25 17:46:04','2024-11-25 17:46:04','{\"settings\":{\"customCSS\":\"\",\"customJS\":\"\",\"assignments\":[{\"group\":true,\"condition\":\"site:entire-site\",\"value\":\"\"}],\"layout_type\":\"footer\",\"assignment_priority\":0,\"general_featured_image\":\"\"},\"regions\":{\"footer\":[{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_region\":\"footer\",\"bar_base_font_size\":\"1rem\",\"bar_bg_color\":\"global-color:tTnOH9HL6UMsltkKQ6\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_box_shadow_color\":\"transparent\",\"bar_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"2em\",\"bar_padding\":\"5rem 0rem 4.5rem 0rem\",\"bar_row_flex_justify\":\"center\",\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"hide_login\":\"\",\"title\":\"Bar 2\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"bg_border_radius\":\"inherit\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_margin\":\"-50px 0px -50px 0px\",\"container_padding\":\"0px 0px 0px 0px\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"center\",\"container_text_align\":\"center\",\"container_width\":\"100%\",\"container_z_index\":\"1\",\"hide_login\":\"\",\"title\":\"Container 1\",\"_modules\":[{\"_type\":\"image\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"image_margin\":\"0em 0px 0px 0px\",\"image_src\":\"39:full\",\"image_styled_max_width\":\"400px\",\"_modules\":[]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Main Footer\",\"_m\":{\"e\":1},\"_region\":\"footer\",\"bar_base_font_size\":\"16px\",\"bar_bg_color\":\"global-color:d5OcSiPv75yItABYW7\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_border_width\":\"0px\",\"bar_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"bar_box_shadow_dimensions\":\"0em 0.15em 2em\",\"bar_content_length\":\"88%\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"1.5em 0em 1em 0em\",\"bar_row_flex_align\":\"flex-start\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bar_z_index\":\"99\",\"bg_border_radius\":\"inherit\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(255, 255, 255, 0)\",\"container_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"container_flex\":\"1 0 320px\",\"container_margin\":\"!0px\",\"container_padding\":\"0em 4em 4em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"flex-start\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Location\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 30px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Office\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 40px 0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"New York, NY\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"<p>Social</p>\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 20px 0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"global-color:primary\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:primary\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"layout-row\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"_modules\":[{\"_type\":\"layout-column\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"layout_column_text_align\":\"left\",\"_modules\":[{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"linkedin-in\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"facebook-f\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"twitter\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]},{\"_type\":\"social\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"anchor_bg_color\":\"rgba(255, 255, 255, 0.25)\",\"anchor_bg_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_blank\":true,\"anchor_border_color_alt\":\"transparent\",\"anchor_border_radius\":\"0em 0em 0em 0em\",\"anchor_border_style\":\"none\",\"anchor_border_width\":\"0px\",\"anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon\":\"instagram\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_color\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_color_alt\":\"rgb(255, 255, 255)\",\"anchor_graphic_icon_font_size\":\"0.875em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_graphic_image_height\":48,\"anchor_graphic_image_width\":48,\"anchor_height\":\"2.5em\",\"anchor_href\":\"\",\"anchor_margin\":\"0px 5px 0px 5px\",\"anchor_nofollow\":true,\"anchor_primary_font_weight\":\"400\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_width\":\"2.5em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"_modules\":[]}]}]}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(140, 51, 51, 0)\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_flex\":\"1 0 320px\",\"container_margin\":\"0px\",\"container_padding\":\"0em 0em 4em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_direction\":\"column\",\"container_row_flex_justify\":\"flex-start\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Contact\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 30px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"css\":\"$el a {color: #fff;}\\n$el a:hover {color: rgb(52, 204, 153);}\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Call Today\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_margin\":\"0em 0em 40px 0em\",\"text_padding\":\"0em\",\"text_subheadline\":true,\"text_subheadline_content\":\"(914) 382-1493\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:primary\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]},{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"css\":\"$el a {color: #fff;}\\n$el a:hover {color: rgb(52, 204, 153);}\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"!0em\",\"text_border_style\":\"none\",\"text_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"text_content\":\"Email\",\"text_font_size\":\"1.125em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1.5\",\"text_subheadline\":true,\"text_subheadline_content\":\"<a href=\\\"mailto:baselineconstruction@zoho.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">baselineconstruction@<wbr />zoho.com</a>\",\"text_subheadline_font_family\":\"google:jost\",\"text_subheadline_font_size\":\"1.125em\",\"text_subheadline_font_weight\":\"200\",\"text_subheadline_text_color\":\"rgb(255, 255, 255)\",\"text_subheadline_text_color_alt\":\"global-color:primary\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"div\",\"text_text_color\":\"global-color:primary\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"_modules\":[]}]},{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"bg_border_radius\":\"inherit\",\"container_bg_color\":\"rgba(255, 255, 255, 0)\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0em 0em 2em 0em\",\"container_row_flex_align\":\"flex-start\",\"container_row_flex_justify\":\"flex-start\",\"container_row_flex_wrap\":true,\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"headline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_content\":\"Navigation\",\"text_content_margin\":\"0px\",\"text_font_size\":\"1.5625em\",\"text_font_weight\":\"500\",\"text_graphic_has_alt\":false,\"text_graphic_has_interactions\":false,\"text_graphic_icon\":\"hand-pointer-o\",\"text_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"text_graphic_icon_border_style\":\"none\",\"text_graphic_icon_border_width\":\"0px\",\"text_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"text_graphic_image_height\":48,\"text_graphic_image_width\":48,\"text_line_height\":\"1\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_subheadline_font_weight\":\"400\",\"text_subheadline_text_shadow_dimensions\":\"0px 0px 0px\",\"text_tag\":\"h6\",\"text_text_color\":\"rgb(255, 255, 255)\",\"text_text_shadow_dimensions\":\"0px 0px 0px\",\"text_type\":\"headline\",\"text_typing_back_delay\":\"1000ms\",\"text_typing_back_speed\":\"50ms\",\"text_typing_speed\":\"50ms\",\"text_width\":\"100%\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"global-color:YFP6101dwXohQOJ4sw\",\"line_height\":\"50px\",\"line_margin\":\"15px 0px 0px 0px\",\"line_max_width\":\"40px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"line\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"line_border_radius\":\"0em\",\"line_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"line_color\":\"rgba(59, 59, 59, 0)\",\"line_height\":\"50px\",\"line_margin\":\"0px 0px 30px 0px\",\"line_size\":\"4px\",\"_modules\":[]},{\"_type\":\"nav-inline\",\"_bp_base\":\"4_4\",\"_region\":\"footer\",\"anchor_bg_color_alt\":\"transparent\",\"anchor_border_color\":\"transparent transparent transparent transparent\",\"anchor_border_color_alt\":\"transparent transparent rgb(52,204,153) transparent\",\"anchor_border_style\":\"none none none none\",\"anchor_border_width\":\"!0px 0px 1px 0px\",\"anchor_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_bg_color_alt\":\"transparent\",\"anchor_graphic_icon_border_color_alt\":\"transparent\",\"anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_border_style\":\"none\",\"anchor_graphic_icon_border_width\":\"0px\",\"anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_padding\":\"!0em 0em 0em 0em\",\"anchor_primary_font_size\":\"1rem\",\"anchor_primary_font_weight\":\"400\",\"anchor_primary_line_height\":\"1.8\",\"anchor_primary_particle_delay\":\"0\",\"anchor_primary_text_color\":\"global-color:4c696e6b\",\"anchor_primary_text_color_alt\":\"global-color:4c696e6b\",\"anchor_primary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_font_weight\":\"400\",\"anchor_secondary_particle_delay\":\"0\",\"anchor_secondary_text_shadow_color_alt\":\"transparent\",\"anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"anchor_sub_indicator_color_alt\":\"global-color:55f1247e-3b5a-4998-bab2-1d4007a63b14\",\"anchor_sub_indicator_margin\":\"!5px\",\"anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"css\":\"$el a:hover .x-anchor-text-primary {\\n  text-decoration: underline;\\n}\",\"dropdown_bg_color\":\"rgb(25, 25, 25)\",\"dropdown_border_radius\":\"0em\",\"dropdown_border_style\":\"none\",\"dropdown_border_width\":\"0px\",\"dropdown_margin\":\"0em\",\"dropdown_padding\":\"0em\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"menu\":\"menu:3\",\"menu_flex\":\"1 1 50%\",\"menu_row_flex_align\":\"flex-start\",\"menu_row_flex_direction\":\"column\",\"menu_row_flex_justify\":\"flex-start\",\"sub_anchor_bg_color_alt\":\"transparent\",\"sub_anchor_border_color_alt\":\"transparent\",\"sub_anchor_border_radius\":\"0em\",\"sub_anchor_border_style\":\"none\",\"sub_anchor_border_width\":\"0px\",\"sub_anchor_box_shadow_color_alt\":\"transparent\",\"sub_anchor_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_bg_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_border_radius\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_border_style\":\"none\",\"sub_anchor_graphic_icon_border_width\":\"0px\",\"sub_anchor_graphic_icon_box_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"sub_anchor_graphic_icon_text_shadow_color_alt\":\"transparent\",\"sub_anchor_graphic_icon_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_margin\":\"0em\",\"sub_anchor_primary_font_weight\":\"400\",\"sub_anchor_primary_particle_delay\":\"0\",\"sub_anchor_primary_text_color\":\"rgb(255, 255, 255)\",\"sub_anchor_primary_text_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_primary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_primary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_secondary_font_weight\":\"400\",\"sub_anchor_secondary_particle_delay\":\"0\",\"sub_anchor_secondary_text_shadow_color_alt\":\"transparent\",\"sub_anchor_secondary_text_shadow_dimensions\":\"0px 0px 0px\",\"sub_anchor_sub_indicator_color\":\"rgb(255, 255, 255)\",\"sub_anchor_sub_indicator_color_alt\":\"rgb(52, 204, 153)\",\"sub_anchor_sub_indicator_text_shadow_color_alt\":\"transparent\",\"sub_anchor_sub_indicator_text_shadow_dimensions\":\"0px 0px 0px\",\"_modules\":[]}]}]},{\"_type\":\"bar\",\"_bp_base\":\"4_4\",\"_label\":\"Copyright\",\"_m\":{\"e\":1},\"_region\":\"footer\",\"bar_base_font_size\":\"14px\",\"bar_bg_color\":\"global-color:MqGYJUpXapYSDre2cf\",\"bar_border_color\":\"#2f2f2f transparent transparent transparent\",\"bar_border_radius\":\"!0px 0px 0px 0px\",\"bar_border_style\":\"solid none none none\",\"bar_border_width\":\"!1px 0px 0px 0px\",\"bar_box_shadow_color\":\"rgba(0, 0, 0, 0)\",\"bar_box_shadow_dimensions\":\"!0em 0.15em 2em\",\"bar_content_length\":\"88%\",\"bar_content_max_length\":\"1200px\",\"bar_height\":\"auto\",\"bar_outer_spacing\":\"0em\",\"bar_padding\":\"30px 0em 0px 0em\",\"bar_row_flex_justify\":\"center\",\"bar_row_flex_wrap\":true,\"bar_scroll_buttons_box_shadow_dimensions\":\"!0em 0em 0em 0em\",\"bar_width\":\"15em\",\"bg_border_radius\":\"inherit\",\"css\":\"@media (max-width: 727px) {\\n\\t$el.x-bar-content {\\n\\t\\tflex-direction: column;\\n\\t}\\n}\",\"_modules\":[{\"_type\":\"container\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":2},\"_region\":\"footer\",\"bg_border_radius\":\"inherit\",\"container_border_radius\":\"0px\",\"container_border_width\":\"0px\",\"container_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"container_margin\":\"0px\",\"container_padding\":\"0px 0px 30px 0px\",\"container_z_index\":\"1\",\"_modules\":[{\"_type\":\"text\",\"_bp_base\":\"4_4\",\"_m\":{\"e\":1},\"_region\":\"footer\",\"effects_transform_enter\":\"\",\"effects_transform_exit\":\"\",\"effects_type_scroll\":\"animation\",\"text_border_radius\":\"0em\",\"text_border_style\":\"none\",\"text_border_width\":\"0px\",\"text_box_shadow_dimensions\":\"0em 0em 0em 0em\",\"text_columns_gap\":\"25px\",\"text_columns_rule_color\":\"transparent\",\"text_columns_rule_style\":\"none\",\"text_columns_rule_width\":\"0px\",\"text_content\":\"<p>&copy; 2024 Baseline Stucco. All rights reserved. Website by <a style=\\\"color: #ffffff;\\\" href=\\\"https://verobeach.marketing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vero Beach Marketing</a>.</p>\",\"text_font_family\":\"google:jost\",\"text_font_size\":\".8rem\",\"text_font_weight\":\"400\",\"text_line_height\":\"1.4\",\"text_margin\":\"0em\",\"text_padding\":\"0em\",\"text_text_align\":\"center\",\"text_text_color\":\"rgb(208, 208, 208)\",\"text_type\":\"standard\",\"_modules\":[]}]}]}]}}','Footer','','tco-data','closed','closed','','untitled-footer','','','2024-11-26 20:56:12','2024-11-26 20:56:12','',0,'https://dev.baselinestucco.com/?post_type=cs_footer&#038;p=153',0,'cs_footer','',0),
(154,1,'2024-11-25 17:52:25','2024-11-25 17:52:25','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','mooring footer','','tco-data','closed','closed','','mooring-footer','','','2024-11-25 17:52:25','2024-11-25 17:52:25','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=154',0,'cs_template','',0),
(155,1,'2024-11-25 18:34:36','2024-11-25 18:34:36','','Baseline Construction','','inherit','open','closed','','3','','','2024-11-25 18:34:42','2024-11-25 18:34:42','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/3.gif',0,'attachment','image/gif',0),
(156,1,'2024-11-25 18:37:42','2024-11-25 18:37:42','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"50\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"51\" ][cs_element_headline _id=\"52\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"53\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"58\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"59\" ][cs_element_row _id=\"60\" ][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"65\" ][cs_element_column _id=\"66\" ][cs_element_image _id=\"67\" ][cs_element_gap _id=\"68\" ][/cs_element_column][cs_element_column _id=\"69\" ][cs_element_image _id=\"70\" ][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_gap _id=\"80\" ][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_text _id=\"85\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"86\" ][cs_element_row _id=\"87\" ][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_image _id=\"92\" ][cs_element_gap _id=\"93\" ][/cs_element_column][cs_element_column _id=\"94\" ][cs_element_image _id=\"95\" ][cs_element_gap _id=\"96\" ][/cs_element_column][cs_element_column _id=\"97\" ][cs_element_image _id=\"98\" ][cs_element_gap _id=\"99\" ][/cs_element_column][cs_element_column _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_text _id=\"104\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"105\" ][cs_element_row _id=\"106\" ][cs_element_column _id=\"107\" ][cs_element_headline _id=\"108\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_image _id=\"111\" ][cs_element_gap _id=\"112\" ][/cs_element_column][cs_element_column _id=\"113\" ][cs_element_image _id=\"114\" ][cs_element_gap _id=\"115\" ][/cs_element_column][cs_element_column _id=\"116\" ][cs_element_image _id=\"117\" ][cs_element_gap _id=\"118\" ][/cs_element_column][cs_element_column _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"121\" ][cs_element_column _id=\"122\" ][cs_element_text _id=\"123\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"124\" ][cs_element_row _id=\"125\" ][cs_element_column _id=\"126\" ][cs_element_headline _id=\"127\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"128\" ][cs_element_row _id=\"129\" ][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][cs_element_image _id=\"132\" ][cs_element_image _id=\"133\" ][cs_element_image _id=\"134\" ][cs_element_gap _id=\"135\" ][/cs_element_column][cs_element_column _id=\"136\" ][cs_element_image _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_image _id=\"139\" ][cs_element_image _id=\"140\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 18:37:42','2024-11-25 18:37:42','',2,'https://dev.baselinestucco.com/?p=156',0,'revision','',0),
(157,1,'2024-11-25 18:41:21','2024-11-25 18:41:21','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][/cs_element_column][cs_element_column _id=\"58\" ][cs_element_image _id=\"59\" ][cs_element_gap _id=\"60\" ][/cs_element_column][cs_element_column _id=\"61\" ][cs_element_image _id=\"62\" ][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"69\" ][cs_element_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_row _id=\"73\" ][cs_element_column _id=\"74\" ][cs_element_headline _id=\"75\" ][cs_content_seo]More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"88\" ][cs_element_column _id=\"89\" ][cs_element_text _id=\"90\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"91\" ][cs_element_row _id=\"92\" ][cs_element_column _id=\"93\" ][cs_element_headline _id=\"94\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"95\" ][cs_element_column _id=\"96\" ][cs_element_image _id=\"97\" ][cs_element_gap _id=\"98\" ][/cs_element_column][cs_element_column _id=\"99\" ][cs_element_image _id=\"100\" ][cs_element_gap _id=\"101\" ][/cs_element_column][cs_element_column _id=\"102\" ][cs_element_image _id=\"103\" ][cs_element_gap _id=\"104\" ][/cs_element_column][cs_element_column _id=\"105\" ][cs_element_image _id=\"106\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"107\" ][cs_element_column _id=\"108\" ][cs_element_text _id=\"109\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"110\" ][cs_element_row _id=\"111\" ][cs_element_column _id=\"112\" ][cs_element_headline _id=\"113\" ][cs_content_seo]I\'m back! You just can\'t get rid of me.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"114\" ][cs_element_row _id=\"115\" ][cs_element_column _id=\"116\" ][cs_element_headline _id=\"117\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"118\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"119\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"120\" ][cs_element_headline _id=\"121\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"122\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"123\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"124\" ][cs_element_headline _id=\"125\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"126\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"127\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"128\" ][cs_element_row _id=\"129\" ][cs_element_column _id=\"130\" ][cs_element_image _id=\"131\" ][cs_element_image _id=\"132\" ][cs_element_image _id=\"133\" ][cs_element_image _id=\"134\" ][cs_element_gap _id=\"135\" ][/cs_element_column][cs_element_column _id=\"136\" ][cs_element_image _id=\"137\" ][cs_element_image _id=\"138\" ][cs_element_image _id=\"139\" ][cs_element_image _id=\"140\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 18:41:21','2024-11-25 18:41:21','',2,'https://dev.baselinestucco.com/?p=157',0,'revision','',0),
(158,1,'2024-11-25 18:53:14','2024-11-25 18:53:14','','Baseline Construction','','inherit','open','closed','','5','','','2024-11-25 18:53:20','2024-11-25 18:53:20','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/5.gif',0,'attachment','image/gif',0),
(159,1,'2024-11-25 18:57:38','2024-11-25 18:57:38','','4L9A4618','','inherit','open','closed','','4l9a4618','','','2024-11-25 18:57:38','2024-11-25 18:57:38','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4618.jpg',0,'attachment','image/jpeg',0),
(160,1,'2024-11-25 18:58:44','2024-11-25 18:58:44','','4L9A4605-2','','inherit','open','closed','','4l9a4605-2','','','2024-11-25 18:58:44','2024-11-25 18:58:44','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4605-2.jpg',0,'attachment','image/jpeg',0),
(161,1,'2024-11-25 19:03:12','2024-11-25 19:03:12','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][/cs_element_column][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][/cs_element_column][cs_element_column _id=\"58\" ][cs_element_image _id=\"59\" ][cs_element_gap _id=\"60\" ][/cs_element_column][cs_element_column _id=\"61\" ][cs_element_image _id=\"62\" ][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"69\" ][cs_element_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_row _id=\"73\" ][cs_element_column _id=\"74\" ][cs_element_headline _id=\"75\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_gap _id=\"79\" ][/cs_element_column][cs_element_column _id=\"80\" ][cs_element_image _id=\"81\" ][cs_element_gap _id=\"82\" ][/cs_element_column][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"88\" ][cs_element_column _id=\"89\" ][cs_element_text _id=\"90\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"91\" ][cs_element_row _id=\"92\" ][cs_element_column _id=\"93\" ][cs_element_headline _id=\"94\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"95\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"96\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"97\" ][cs_element_headline _id=\"98\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"99\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"100\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"103\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"104\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"105\" ][cs_element_row _id=\"106\" ][cs_element_column _id=\"107\" ][cs_element_image _id=\"108\" ][cs_element_image _id=\"109\" ][cs_element_image _id=\"110\" ][cs_element_image _id=\"111\" ][cs_element_gap _id=\"112\" ][/cs_element_column][cs_element_column _id=\"113\" ][cs_element_image _id=\"114\" ][cs_element_image _id=\"115\" ][cs_element_image _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 19:03:12','2024-11-25 19:03:12','',2,'https://dev.baselinestucco.com/?p=161',0,'revision','',0),
(162,1,'2024-11-25 19:09:09','2024-11-25 19:09:09','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_image _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"59\" ][/cs_element_column][cs_element_column _id=\"60\" ][cs_element_image _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_text _id=\"66\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"67\" ][/cs_element_column][cs_element_column _id=\"68\" ][cs_element_image _id=\"69\" ][cs_element_text _id=\"70\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"75\" ][cs_element_column _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Even More Features\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"82\" ][cs_element_column _id=\"83\" ][cs_element_image _id=\"84\" ][cs_element_gap _id=\"85\" ][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_image _id=\"87\" ][cs_element_gap _id=\"88\" ][/cs_element_column][cs_element_column _id=\"89\" ][cs_element_image _id=\"90\" ][cs_element_gap _id=\"91\" ][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"94\" ][cs_element_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_row _id=\"98\" ][cs_element_column _id=\"99\" ][cs_element_headline _id=\"100\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"101\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"102\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"103\" ][cs_element_headline _id=\"104\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"105\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"106\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"107\" ][cs_element_headline _id=\"108\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"109\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"110\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"111\" ][cs_element_row _id=\"112\" ][cs_element_column _id=\"113\" ][cs_element_image _id=\"114\" ][cs_element_image _id=\"115\" ][cs_element_image _id=\"116\" ][cs_element_image _id=\"117\" ][cs_element_gap _id=\"118\" ][/cs_element_column][cs_element_column _id=\"119\" ][cs_element_image _id=\"120\" ][cs_element_image _id=\"121\" ][cs_element_image _id=\"122\" ][cs_element_image _id=\"123\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 19:09:09','2024-11-25 19:09:09','',2,'https://dev.baselinestucco.com/?p=162',0,'revision','',0),
(163,1,'2024-11-25 19:11:04','2024-11-25 19:11:04','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_image _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"59\" ][/cs_element_column][cs_element_column _id=\"60\" ][cs_element_image _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_text _id=\"66\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"67\" ][/cs_element_column][cs_element_column _id=\"68\" ][cs_element_image _id=\"69\" ][cs_element_text _id=\"70\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"75\" ][cs_element_column _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 19:11:04','2024-11-25 19:11:04','',2,'https://dev.baselinestucco.com/?p=163',0,'revision','',0),
(164,1,'2024-11-25 19:17:48','2024-11-25 19:17:48','','Baseline Construction Long Logo((800 x 400 px) (200 x 100 px)','','inherit','open','closed','','baseline-construction-long-logo800-x-400-px-200-x-100-px','','','2024-11-25 19:17:48','2024-11-25 19:17:48','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Baseline-Construction-Long-Logo800-x-400-px-200-x-100-px.png',0,'attachment','image/png',0),
(165,1,'2024-11-25 19:31:00','2024-11-25 19:31:00','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_image _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"59\" ][/cs_element_column][cs_element_column _id=\"60\" ][cs_element_image _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_text _id=\"66\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"67\" ][/cs_element_column][cs_element_column _id=\"68\" ][cs_element_image _id=\"69\" ][cs_element_text _id=\"70\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"75\" ][cs_element_column _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 19:31:00','2024-11-25 19:31:00','',2,'https://dev.baselinestucco.com/?p=165',0,'revision','',0),
(166,1,'2024-11-25 19:32:20','2024-11-25 19:32:20','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_button _id=\"8\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_image _id=\"13\" ][cs_element_gap _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"18\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"19\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"20\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"28\" ][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_image _id=\"30\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"31\" ][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"38\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"39\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"40\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_row _id=\"42\" ][cs_element_column _id=\"43\" ][cs_element_button _id=\"44\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"49\" ][cs_element_text _id=\"50\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_image _id=\"53\" ][cs_element_gap _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"56\" ][cs_element_image _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"59\" ][/cs_element_column][cs_element_column _id=\"60\" ][cs_element_image _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"63\" ][/cs_element_column][cs_element_column _id=\"64\" ][cs_element_image _id=\"65\" ][cs_element_text _id=\"66\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"67\" ][/cs_element_column][cs_element_column _id=\"68\" ][cs_element_image _id=\"69\" ][cs_element_text _id=\"70\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"71\" ][/cs_element_column][cs_element_column _id=\"72\" ][cs_element_image _id=\"73\" ][cs_element_text _id=\"74\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"75\" ][cs_element_row _id=\"76\" ][cs_element_column _id=\"77\" ][cs_element_headline _id=\"78\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"79\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"80\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"81\" ][cs_element_headline _id=\"82\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"84\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"85\" ][cs_element_headline _id=\"86\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"88\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"89\" ][cs_element_row _id=\"90\" ][cs_element_column _id=\"91\" ][cs_element_headline _id=\"92\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 19:32:20','2024-11-25 19:32:20','',2,'https://dev.baselinestucco.com/?p=166',0,'revision','',0),
(167,1,'2024-11-25 19:34:33','2024-11-25 19:34:33','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"6\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"10\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"13\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"14\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 19:34:33','2024-11-25 19:34:33','',133,'https://dev.baselinestucco.com/?p=167',0,'revision','',0),
(168,1,'2024-11-25 19:36:03','2024-11-25 19:36:03','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','texting','','tco-data','closed','closed','','texting','','','2024-11-25 19:36:03','2024-11-25 19:36:03','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=168',0,'cs_template','',0),
(169,1,'2024-11-25 19:42:20','2024-11-25 19:42:20','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_button _id=\"4\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"6\" ][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_headline _id=\"9\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"10\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"11\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"12\" ][cs_element_headline _id=\"13\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"14\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"15\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_headline _id=\"17\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"18\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"19\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"24\" ][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Our Services\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_image _id=\"29\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"30\" ][cs_element_column _id=\"31\" ][cs_element_counter _id=\"32\" ][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_counter _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_counter _id=\"36\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_headline _id=\"40\" ][cs_content_seo]Designer\\n\\n[/cs_content_seo][cs_element_text _id=\"41\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Developer\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Marketer\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"61\" ][cs_element_row _id=\"62\" ][cs_element_column _id=\"63\" ][cs_element_headline _id=\"64\" ][cs_content_seo]Support\\n\\n[/cs_content_seo][cs_element_text _id=\"65\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_headline _id=\"67\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 19:42:20','2024-11-25 19:42:20','',133,'https://dev.baselinestucco.com/?p=169',0,'revision','',0),
(170,1,'2024-11-25 19:43:19','2024-11-25 19:43:19','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_button _id=\"4\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"6\" ][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_headline _id=\"9\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"10\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"11\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"12\" ][cs_element_headline _id=\"13\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"14\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"15\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_headline _id=\"17\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"18\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"19\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"24\" ][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_image _id=\"29\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"30\" ][cs_element_column _id=\"31\" ][cs_element_counter _id=\"32\" ][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_counter _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_counter _id=\"36\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_headline _id=\"40\" ][cs_content_seo]Designer\\n\\n[/cs_content_seo][cs_element_text _id=\"41\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"45\" ][cs_element_row _id=\"46\" ][cs_element_column _id=\"47\" ][cs_element_headline _id=\"48\" ][cs_content_seo]Developer\\n\\n[/cs_content_seo][cs_element_text _id=\"49\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_headline _id=\"56\" ][cs_content_seo]Marketer\\n\\n[/cs_content_seo][cs_element_text _id=\"57\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"61\" ][cs_element_row _id=\"62\" ][cs_element_column _id=\"63\" ][cs_element_headline _id=\"64\" ][cs_content_seo]Support\\n\\n[/cs_content_seo][cs_element_text _id=\"65\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_headline _id=\"67\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 19:43:19','2024-11-25 19:43:19','',133,'https://dev.baselinestucco.com/?p=170',0,'revision','',0),
(171,1,'2024-11-25 20:03:33','2024-11-25 20:03:33','','Baseline Construction','','inherit','open','closed','','untitled-design-2','','','2024-11-25 20:03:40','2024-11-25 20:03:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Untitled-design.gif',0,'attachment','image/gif',0),
(172,1,'2024-11-25 20:04:49','2024-11-25 20:04:49','','verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076','','inherit','open','closed','','verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076','','','2024-11-25 20:04:49','2024-11-25 20:04:49','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076.webp',0,'attachment','image/webp',0),
(173,1,'2024-11-25 20:05:43','2024-11-25 20:05:43','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]EIFS Installation\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]01. Enhances energy efficiency with R-values ranging from 6 to 12+.\n02. Reduces heating and cooling costs by insulating the building exterior.\n03. Lightweight and flexible, minimizing structural stress on the building.\n04. Provides a sleek, modern appearance with customizable textures.\n05. Highly weather-resistant, protecting against moisture and temperature changes.\\n\\n[/cs_content_seo][cs_element_image _id=\"31\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"32\" ][cs_element_row _id=\"33\" ][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Developer\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"37\" ][cs_element_headline _id=\"38\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"39\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"40\" ][cs_element_row _id=\"41\" ][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Marketer\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Support\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"53\" ][cs_element_headline _id=\"54\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"55\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_row _id=\"57\" ][cs_element_column _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"61\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"62\" ][cs_element_headline _id=\"63\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"64\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"65\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_headline _id=\"67\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"69\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 20:05:43','2024-11-25 20:05:43','',133,'https://dev.baselinestucco.com/?p=173',0,'revision','',0),
(174,1,'2024-11-25 20:12:51','2024-11-25 20:12:51','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]EIFS Installation\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]01. Enhances energy efficiency with R-values ranging from 6 to 12+.\n02. Reduces heating and cooling costs by insulating the building exterior.\n03. Lightweight and flexible, minimizing structural stress on the building.\n04. Provides a sleek, modern appearance with customizable textures.\n05. Highly weather-resistant, protecting against moisture and temperature changes.\\n\\n[/cs_content_seo][cs_element_image _id=\"31\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"32\" ][cs_element_row _id=\"33\" ][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Residential Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"37\" ][cs_element_headline _id=\"38\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"39\" ][cs_content_seo]01. Adds timeless beauty with customizable textures and finishes.\n02. Increases home value with durable, low-maintenance exterior surfaces.\n03. Protects against the elements with weather-resistant materials.\n04. Improves energy efficiency with natural insulating properties.\n05. Available in a variety of colors and textures to match your home&rsquo;s aesthetic.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"40\" ][cs_element_row _id=\"41\" ][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Commercial Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]01. Enhances the professional appearance of commercial properties.\n02. Durable and long-lasting, reducing maintenance costs.\n03. Resistant to cracking, fading, and weather damage.\n04. Improves energy efficiency for lower operating costs.\n05. Versatile design options to suit any business style or branding.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Support\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]Place a brief summary about the position here. It shouldn\'t be too long as you can go into more detail in the items to the right.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"53\" ][cs_element_headline _id=\"54\" ][cs_content_seo]What We\'re Looking For\\n\\n[/cs_content_seo][cs_element_text _id=\"55\" ][cs_content_seo]01. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.02. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.03. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus interdum arcu, eget facilisis quam felis id mauris. Ut convallis, lacus nec ornare.04. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque pretium, nisi ut volutpat mollis, leo risus.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_row _id=\"57\" ][cs_element_column _id=\"58\" ][cs_element_headline _id=\"59\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"61\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"62\" ][cs_element_headline _id=\"63\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"64\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"65\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_headline _id=\"67\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"69\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 20:12:51','2024-11-25 20:12:51','',133,'https://dev.baselinestucco.com/?p=174',0,'revision','',0),
(175,1,'2024-11-25 20:15:45','2024-11-25 20:15:45','[cs_content _p=\'133\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]EIFS Installation\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Exterior Insulation Finish System (EIFS) is an advanced solution for energy efficiency and durability. EIFS adds a layer of insulation to the exterior of homes and buildings, offering an R-value of 6 to 12 or higher, depending on foam thickness. Our team uses premium materials and certified techniques to deliver a seamless, weather-resistant finish that improves energy savings and enhances curb appeal.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]01. Enhances energy efficiency with R-values ranging from 6 to 12+.\n02. Reduces heating and cooling costs by insulating the building exterior.\n03. Lightweight and flexible, minimizing structural stress on the building.\n04. Provides a sleek, modern appearance with customizable textures.\n05. Highly weather-resistant, protecting against moisture and temperature changes.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"31\" ][cs_element_row _id=\"32\" ][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Residential Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Transform your home with expertly applied stucco finishes that are as durable as they are beautiful. From modern smooth textures to classic Mediterranean-inspired designs, our stucco solutions are tailored to match your home\'s style. Our skilled team ensures a flawless application that enhances both the value and visual appeal of your property.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_headline _id=\"37\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]01. Adds timeless beauty with customizable textures and finishes.\n02. Increases home value with durable, low-maintenance exterior surfaces.\n03. Protects against the elements with weather-resistant materials.\n04. Improves energy efficiency with natural insulating properties.\n05. Available in a variety of colors and textures to match your home&rsquo;s aesthetic.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Commercial Stucco\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]We understand the importance of aesthetics and durability for your business. Our commercial stucco services are designed to provide a professional, polished look while ensuring long-term protection against the elements. Whether you&rsquo;re building a new storefront or updating an office exterior, we deliver finishes that stand out and last.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"44\" ][cs_element_headline _id=\"45\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"46\" ][cs_content_seo]01. Enhances the professional appearance of commercial properties.\n02. Durable and long-lasting, reducing maintenance costs.\n03. Resistant to cracking, fading, and weather damage.\n04. Improves energy efficiency for lower operating costs.\n05. Versatile design options to suit any business style or branding.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"47\" ][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Renovations and Repairs\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Revitalize your property with expert stucco renovations and repairs. From repairing cracks and damage to modernizing outdated finishes, we specialize in breathing new life into existing structures. Our team ensures a seamless match between new and old finishes, leaving your property looking refreshed and flawless.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"52\" ][cs_element_headline _id=\"53\" ][cs_content_seo]Benefits\\n\\n[/cs_content_seo][cs_element_text _id=\"54\" ][cs_content_seo]01. Restores damaged stucco to like-new condition with seamless results.\n02. Prevents further structural issues by addressing cracks and wear.\n03. Modernizes outdated finishes to align with current design trends.\n04. Improves curb appeal, increasing property value.\n05. Ensures long-lasting results with high-quality materials and techniques.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"55\" ][cs_element_row _id=\"56\" ][cs_element_column _id=\"57\" ][cs_element_headline _id=\"58\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"59\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"60\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"61\" ][cs_element_headline _id=\"62\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"63\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"64\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"65\" ][cs_element_headline _id=\"66\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"67\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"68\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Services','','inherit','closed','closed','','133-revision-v1','','','2024-11-25 20:15:45','2024-11-25 20:15:45','',133,'https://dev.baselinestucco.com/?p=175',0,'revision','',0),
(176,1,'2024-11-25 20:18:13','2024-11-25 20:18:13','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','services','','tco-data','closed','closed','','services','','','2024-11-25 20:18:13','2024-11-25 20:18:13','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=176',0,'cs_template','',0),
(177,1,'2024-11-25 20:23:24','2024-11-25 20:23:24','','24-web-or-mls-2105-Windward-Way-24','','inherit','open','closed','','24-web-or-mls-2105-windward-way-24','','','2024-11-25 20:23:24','2024-11-25 20:23:24','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24.jpg',0,'attachment','image/jpeg',0),
(178,1,'2024-11-25 20:23:24','2024-11-25 20:23:24','','30-web-or-mls-2105-Windward-Way-30','','inherit','open','closed','','30-web-or-mls-2105-windward-way-30','','','2024-11-25 20:23:24','2024-11-25 20:23:24','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30.jpg',0,'attachment','image/jpeg',0),
(179,1,'2024-11-25 20:23:25','2024-11-25 20:23:25','','31-web-or-mls-2105-Windward-Way-31','','inherit','open','closed','','31-web-or-mls-2105-windward-way-31','','','2024-11-25 20:23:25','2024-11-25 20:23:25','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31.jpg',0,'attachment','image/jpeg',0),
(180,1,'2024-11-25 20:23:26','2024-11-25 20:23:26','','35-web-or-mls-2105-Windward-Way-35','','inherit','open','closed','','35-web-or-mls-2105-windward-way-35','','','2024-11-25 20:23:26','2024-11-25 20:23:26','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35.jpg',0,'attachment','image/jpeg',0),
(181,1,'2024-11-25 20:23:26','2024-11-25 20:23:26','','37-web-or-mls-2105-Windward-Way-37','','inherit','open','closed','','37-web-or-mls-2105-windward-way-37','','','2024-11-25 20:23:26','2024-11-25 20:23:26','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37.jpg',0,'attachment','image/jpeg',0),
(182,1,'2024-11-25 20:23:27','2024-11-25 20:23:27','','42-web-or-mls-2105-Windward-Way-42','','inherit','open','closed','','42-web-or-mls-2105-windward-way-42','','','2024-11-25 20:23:27','2024-11-25 20:23:27','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42.jpg',0,'attachment','image/jpeg',0),
(183,1,'2024-11-25 20:23:28','2024-11-25 20:23:28','','36-web-or-mls-2105-Windward-Way-36','','inherit','open','closed','','36-web-or-mls-2105-windward-way-36','','','2024-11-25 20:23:28','2024-11-25 20:23:28','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36.jpg',0,'attachment','image/jpeg',0),
(184,1,'2024-11-25 20:23:28','2024-11-25 20:23:28','','43-web-or-mls-2105-Windward-Way-43','','inherit','open','closed','','43-web-or-mls-2105-windward-way-43','','','2024-11-25 20:23:28','2024-11-25 20:23:28','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43.jpg',0,'attachment','image/jpeg',0),
(185,1,'2024-11-25 20:23:29','2024-11-25 20:23:29','','44-web-or-mls-2105-Windward-Way-44','','inherit','open','closed','','44-web-or-mls-2105-windward-way-44','','','2024-11-25 20:23:29','2024-11-25 20:23:29','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44.jpg',0,'attachment','image/jpeg',0),
(186,1,'2024-11-25 20:23:30','2024-11-25 20:23:30','','39-web-or-mls-2105-Windward-Way-39','','inherit','open','closed','','39-web-or-mls-2105-windward-way-39','','','2024-11-25 20:23:30','2024-11-25 20:23:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39.jpg',0,'attachment','image/jpeg',0),
(187,1,'2024-11-25 20:23:30','2024-11-25 20:23:30','','40-web-or-mls-2105-Windward-Way-40','','inherit','open','closed','','40-web-or-mls-2105-windward-way-40','','','2024-11-25 20:23:30','2024-11-25 20:23:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40.jpg',0,'attachment','image/jpeg',0),
(188,1,'2024-11-25 20:23:31','2024-11-25 20:23:31','','38-web-or-mls-2105-Windward-Way-38','','inherit','open','closed','','38-web-or-mls-2105-windward-way-38','','','2024-11-25 20:23:31','2024-11-25 20:23:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38.jpg',0,'attachment','image/jpeg',0),
(189,1,'2024-11-25 20:23:49','2024-11-25 20:23:49','','20-web-or-mls-2105-Windward-Way-20','','inherit','open','closed','','20-web-or-mls-2105-windward-way-20','','','2024-11-25 20:23:49','2024-11-25 20:23:49','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20.jpg',0,'attachment','image/jpeg',0),
(190,1,'2024-11-25 20:23:50','2024-11-25 20:23:50','','21-web-or-mls-2105-Windward-Way-21','','inherit','open','closed','','21-web-or-mls-2105-windward-way-21','','','2024-11-25 20:23:50','2024-11-25 20:23:50','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21.jpg',0,'attachment','image/jpeg',0),
(191,1,'2024-11-25 20:23:50','2024-11-25 20:23:50','','33-web-or-mls-2105-Windward-Way-33','','inherit','open','closed','','33-web-or-mls-2105-windward-way-33','','','2024-11-25 20:23:50','2024-11-25 20:23:50','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33.jpg',0,'attachment','image/jpeg',0),
(192,1,'2024-11-25 20:23:51','2024-11-25 20:23:51','','32-web-or-mls-2105-Windward-Way-32','','inherit','open','closed','','32-web-or-mls-2105-windward-way-32','','','2024-11-25 20:23:51','2024-11-25 20:23:51','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32.jpg',0,'attachment','image/jpeg',0),
(193,1,'2024-11-25 20:23:52','2024-11-25 20:23:52','','34-web-or-mls-2105-Windward-Way-34','','inherit','open','closed','','34-web-or-mls-2105-windward-way-34','','','2024-11-25 20:23:52','2024-11-25 20:23:52','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34.jpg',0,'attachment','image/jpeg',0),
(194,1,'2024-11-25 20:23:53','2024-11-25 20:23:53','','48-web-or-mls-2105-Windward-Way-49','','inherit','open','closed','','48-web-or-mls-2105-windward-way-49','','','2024-11-25 20:23:53','2024-11-25 20:23:53','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49.jpg',0,'attachment','image/jpeg',0),
(195,1,'2024-11-25 20:23:53','2024-11-25 20:23:53','','51-web-or-mls-2105-Windward-Way-52','','inherit','open','closed','','51-web-or-mls-2105-windward-way-52','','','2024-11-25 20:23:53','2024-11-25 20:23:53','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52.jpg',0,'attachment','image/jpeg',0),
(196,1,'2024-11-25 20:23:54','2024-11-25 20:23:54','','50-web-or-mls-2105-Windward-Way-51','','inherit','open','closed','','50-web-or-mls-2105-windward-way-51','','','2024-11-25 20:23:54','2024-11-25 20:23:54','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51.jpg',0,'attachment','image/jpeg',0),
(197,1,'2024-11-25 20:23:55','2024-11-25 20:23:55','','49-web-or-mls-2105-Windward-Way-50','','inherit','open','closed','','49-web-or-mls-2105-windward-way-50','','','2024-11-25 20:23:55','2024-11-25 20:23:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50.jpg',0,'attachment','image/jpeg',0),
(198,1,'2024-11-25 20:23:55','2024-11-25 20:23:55','','65-web-or-mls-2105-Windward-Way-61','','inherit','open','closed','','65-web-or-mls-2105-windward-way-61','','','2024-11-25 20:23:55','2024-11-25 20:23:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61.jpg',0,'attachment','image/jpeg',0),
(199,1,'2024-11-25 20:23:56','2024-11-25 20:23:56','','64-web-or-mls-2105-Windward-Way-60-2','','inherit','open','closed','','64-web-or-mls-2105-windward-way-60-2','','','2024-11-25 20:23:56','2024-11-25 20:23:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/64-web-or-mls-2105-Windward-Way-60-2.jpg',0,'attachment','image/jpeg',0),
(200,1,'2024-11-25 20:23:57','2024-11-25 20:23:57','','66-web-or-mls-2105-Windward-Way-62','','inherit','open','closed','','66-web-or-mls-2105-windward-way-62','','','2024-11-25 20:23:57','2024-11-25 20:23:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62.jpg',0,'attachment','image/jpeg',0),
(201,1,'2024-11-25 20:23:57','2024-11-25 20:23:57','','69-web-or-mls-2105-Windward-Way-65','','inherit','open','closed','','69-web-or-mls-2105-windward-way-65','','','2024-11-25 20:23:57','2024-11-25 20:23:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65.jpg',0,'attachment','image/jpeg',0),
(202,1,'2024-11-25 20:23:58','2024-11-25 20:23:58','','68-web-or-mls-2105-Windward-Way-64','','inherit','open','closed','','68-web-or-mls-2105-windward-way-64','','','2024-11-25 20:23:58','2024-11-25 20:23:58','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64.jpg',0,'attachment','image/jpeg',0),
(203,1,'2024-11-25 20:23:59','2024-11-25 20:23:59','','70-web-or-mls-2105-Windward-Way-66','','inherit','open','closed','','70-web-or-mls-2105-windward-way-66','','','2024-11-25 20:23:59','2024-11-25 20:23:59','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66.jpg',0,'attachment','image/jpeg',0),
(204,1,'2024-11-25 20:23:59','2024-11-25 20:23:59','','55-web-or-mls-2105-Windward-Way-56','','inherit','open','closed','','55-web-or-mls-2105-windward-way-56','','','2024-11-25 20:23:59','2024-11-25 20:23:59','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56.jpg',0,'attachment','image/jpeg',0),
(205,1,'2024-11-25 20:24:00','2024-11-25 20:24:00','','27-web-or-mls-2105-Windward-Way-27','','inherit','open','closed','','27-web-or-mls-2105-windward-way-27','','','2024-11-25 20:24:00','2024-11-25 20:24:00','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27.jpg',0,'attachment','image/jpeg',0),
(206,1,'2024-11-25 20:24:01','2024-11-25 20:24:01','','25-web-or-mls-2105-Windward-Way-25','','inherit','open','closed','','25-web-or-mls-2105-windward-way-25','','','2024-11-25 20:24:01','2024-11-25 20:24:01','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25.jpg',0,'attachment','image/jpeg',0),
(207,1,'2024-11-25 20:24:01','2024-11-25 20:24:01','','29-web-or-mls-2105-Windward-Way-29','','inherit','open','closed','','29-web-or-mls-2105-windward-way-29','','','2024-11-25 20:24:01','2024-11-25 20:24:01','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29.jpg',0,'attachment','image/jpeg',0),
(208,1,'2024-11-25 20:24:02','2024-11-25 20:24:02','','28-web-or-mls-2105-Windward-Way-28','','inherit','open','closed','','28-web-or-mls-2105-windward-way-28','','','2024-11-25 20:24:02','2024-11-25 20:24:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28.jpg',0,'attachment','image/jpeg',0),
(209,1,'2024-11-25 20:24:11','2024-11-25 20:24:11','','63-web-or-mls-2105-Windward-Way-59-2','','inherit','open','closed','','63-web-or-mls-2105-windward-way-59-2','','','2024-11-25 20:24:11','2024-11-25 20:24:11','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/63-web-or-mls-2105-Windward-Way-59-2.jpg',0,'attachment','image/jpeg',0),
(210,1,'2024-11-25 20:24:12','2024-11-25 20:24:12','','59-web-or-mls-2105-Windward-Way-58','','inherit','open','closed','','59-web-or-mls-2105-windward-way-58','','','2024-11-25 20:24:12','2024-11-25 20:24:12','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/59-web-or-mls-2105-Windward-Way-58.jpg',0,'attachment','image/jpeg',0),
(211,1,'2024-11-25 20:24:12','2024-11-25 20:24:12','','56-web-or-mls-2105-Windward-Way-57','','inherit','open','closed','','56-web-or-mls-2105-windward-way-57','','','2024-11-25 20:24:12','2024-11-25 20:24:12','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/56-web-or-mls-2105-Windward-Way-57.jpg',0,'attachment','image/jpeg',0),
(212,1,'2024-11-25 20:24:13','2024-11-25 20:24:13','','47-web-or-mls-2105-Windward-Way-48','','inherit','open','closed','','47-web-or-mls-2105-windward-way-48','','','2024-11-25 20:24:13','2024-11-25 20:24:13','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/47-web-or-mls-2105-Windward-Way-48.jpg',0,'attachment','image/jpeg',0),
(213,1,'2024-11-25 20:24:14','2024-11-25 20:24:14','','52-web-or-mls-2105-Windward-Way-53','','inherit','open','closed','','52-web-or-mls-2105-windward-way-53','','','2024-11-25 20:24:14','2024-11-25 20:24:14','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53.jpg',0,'attachment','image/jpeg',0),
(214,1,'2024-11-25 20:24:14','2024-11-25 20:24:14','','54-web-or-mls-2105-Windward-Way-55','','inherit','open','closed','','54-web-or-mls-2105-windward-way-55','','','2024-11-25 20:24:14','2024-11-25 20:24:14','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/54-web-or-mls-2105-Windward-Way-55.jpg',0,'attachment','image/jpeg',0),
(215,1,'2024-11-25 20:24:15','2024-11-25 20:24:15','','67-web-or-mls-2105-Windward-Way-63','','inherit','open','closed','','67-web-or-mls-2105-windward-way-63','','','2024-11-25 20:24:15','2024-11-25 20:24:15','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/67-web-or-mls-2105-Windward-Way-63.jpg',0,'attachment','image/jpeg',0),
(216,1,'2024-11-25 20:24:16','2024-11-25 20:24:16','','61-web-or-mls-2105-Windward-Way-47-2','','inherit','open','closed','','61-web-or-mls-2105-windward-way-47-2','','','2024-11-25 20:24:16','2024-11-25 20:24:16','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/61-web-or-mls-2105-Windward-Way-47-2.jpg',0,'attachment','image/jpeg',0),
(217,1,'2024-11-25 20:24:16','2024-11-25 20:24:16','','11-web-or-mls-2105-Windward-Way-11','','inherit','open','closed','','11-web-or-mls-2105-windward-way-11','','','2024-11-25 20:24:16','2024-11-25 20:24:16','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11.jpg',0,'attachment','image/jpeg',0),
(218,1,'2024-11-25 20:24:17','2024-11-25 20:24:17','','10-web-or-mls-2105-Windward-Way-10','','inherit','open','closed','','10-web-or-mls-2105-windward-way-10','','','2024-11-25 20:24:17','2024-11-25 20:24:17','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10.jpg',0,'attachment','image/jpeg',0),
(219,1,'2024-11-25 20:24:18','2024-11-25 20:24:18','','9-web-or-mls-2105-Windward-Way-9','','inherit','open','closed','','9-web-or-mls-2105-windward-way-9','','','2024-11-25 20:24:18','2024-11-25 20:24:18','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9.jpg',0,'attachment','image/jpeg',0),
(220,1,'2024-11-25 20:24:18','2024-11-25 20:24:18','','6-web-or-mls-2105-Windward-Way-6','','inherit','open','closed','','6-web-or-mls-2105-windward-way-6','','','2024-11-25 20:24:18','2024-11-25 20:24:18','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6.jpg',0,'attachment','image/jpeg',0),
(221,1,'2024-11-25 20:24:19','2024-11-25 20:24:19','','7-web-or-mls-2105-Windward-Way-7','','inherit','open','closed','','7-web-or-mls-2105-windward-way-7','','','2024-11-25 20:24:19','2024-11-25 20:24:19','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7.jpg',0,'attachment','image/jpeg',0),
(222,1,'2024-11-25 20:24:19','2024-11-25 20:24:19','','22-web-or-mls-2105-Windward-Way-22','','inherit','open','closed','','22-web-or-mls-2105-windward-way-22','','','2024-11-25 20:24:19','2024-11-25 20:24:19','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22.jpg',0,'attachment','image/jpeg',0),
(223,1,'2024-11-25 20:24:20','2024-11-25 20:24:20','','16-web-or-mls-2105-Windward-Way-16','','inherit','open','closed','','16-web-or-mls-2105-windward-way-16','','','2024-11-25 20:24:20','2024-11-25 20:24:20','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16.jpg',0,'attachment','image/jpeg',0),
(224,1,'2024-11-25 20:24:21','2024-11-25 20:24:21','','14-web-or-mls-2105-Windward-Way-14','','inherit','open','closed','','14-web-or-mls-2105-windward-way-14','','','2024-11-25 20:24:21','2024-11-25 20:24:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14.jpg',0,'attachment','image/jpeg',0),
(225,1,'2024-11-25 20:24:21','2024-11-25 20:24:21','','17-web-or-mls-2105-Windward-Way-17','','inherit','open','closed','','17-web-or-mls-2105-windward-way-17','','','2024-11-25 20:24:21','2024-11-25 20:24:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17.jpg',0,'attachment','image/jpeg',0),
(226,1,'2024-11-25 20:24:22','2024-11-25 20:24:22','','12-web-or-mls-2105-Windward-Way-12','','inherit','open','closed','','12-web-or-mls-2105-windward-way-12','','','2024-11-25 20:24:22','2024-11-25 20:24:22','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12.jpg',0,'attachment','image/jpeg',0),
(227,1,'2024-11-25 20:24:23','2024-11-25 20:24:23','','19-web-or-mls-2105-Windward-Way-19','','inherit','open','closed','','19-web-or-mls-2105-windward-way-19','','','2024-11-25 20:24:23','2024-11-25 20:24:23','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19.jpg',0,'attachment','image/jpeg',0),
(228,1,'2024-11-25 20:24:23','2024-11-25 20:24:23','','13-web-or-mls-2105-Windward-Way-13','','inherit','open','closed','','13-web-or-mls-2105-windward-way-13','','','2024-11-25 20:24:23','2024-11-25 20:24:23','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13.jpg',0,'attachment','image/jpeg',0),
(229,1,'2024-11-25 20:24:30','2024-11-25 20:24:30','','27-web-or-mls-2105-Windward-Way-27','','inherit','open','closed','','27-web-or-mls-2105-windward-way-27-2','','','2024-11-25 20:24:30','2024-11-25 20:24:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/27-web-or-mls-2105-Windward-Way-27-1.jpg',0,'attachment','image/jpeg',0),
(230,1,'2024-11-25 20:24:31','2024-11-25 20:24:31','','25-web-or-mls-2105-Windward-Way-25','','inherit','open','closed','','25-web-or-mls-2105-windward-way-25-2','','','2024-11-25 20:24:31','2024-11-25 20:24:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/25-web-or-mls-2105-Windward-Way-25-1.jpg',0,'attachment','image/jpeg',0),
(231,1,'2024-11-25 20:24:32','2024-11-25 20:24:32','','29-web-or-mls-2105-Windward-Way-29','','inherit','open','closed','','29-web-or-mls-2105-windward-way-29-2','','','2024-11-25 20:24:32','2024-11-25 20:24:32','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/29-web-or-mls-2105-Windward-Way-29-1.jpg',0,'attachment','image/jpeg',0),
(232,1,'2024-11-25 20:24:32','2024-11-25 20:24:32','','28-web-or-mls-2105-Windward-Way-28','','inherit','open','closed','','28-web-or-mls-2105-windward-way-28-2','','','2024-11-25 20:24:32','2024-11-25 20:24:32','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/28-web-or-mls-2105-Windward-Way-28-1.jpg',0,'attachment','image/jpeg',0),
(233,1,'2024-11-25 20:24:33','2024-11-25 20:24:33','','24-web-or-mls-2105-Windward-Way-24','','inherit','open','closed','','24-web-or-mls-2105-windward-way-24-2','','','2024-11-25 20:24:33','2024-11-25 20:24:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/24-web-or-mls-2105-Windward-Way-24-1.jpg',0,'attachment','image/jpeg',0),
(234,1,'2024-11-25 20:24:33','2024-11-25 20:24:33','','30-web-or-mls-2105-Windward-Way-30','','inherit','open','closed','','30-web-or-mls-2105-windward-way-30-2','','','2024-11-25 20:24:33','2024-11-25 20:24:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/30-web-or-mls-2105-Windward-Way-30-1.jpg',0,'attachment','image/jpeg',0),
(235,1,'2024-11-25 20:24:34','2024-11-25 20:24:34','','31-web-or-mls-2105-Windward-Way-31','','inherit','open','closed','','31-web-or-mls-2105-windward-way-31-2','','','2024-11-25 20:24:34','2024-11-25 20:24:34','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/31-web-or-mls-2105-Windward-Way-31-1.jpg',0,'attachment','image/jpeg',0),
(236,1,'2024-11-25 20:24:35','2024-11-25 20:24:35','','35-web-or-mls-2105-Windward-Way-35','','inherit','open','closed','','35-web-or-mls-2105-windward-way-35-2','','','2024-11-25 20:24:35','2024-11-25 20:24:35','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/35-web-or-mls-2105-Windward-Way-35-1.jpg',0,'attachment','image/jpeg',0),
(237,1,'2024-11-25 20:24:35','2024-11-25 20:24:35','','37-web-or-mls-2105-Windward-Way-37','','inherit','open','closed','','37-web-or-mls-2105-windward-way-37-2','','','2024-11-25 20:24:35','2024-11-25 20:24:35','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/37-web-or-mls-2105-Windward-Way-37-1.jpg',0,'attachment','image/jpeg',0),
(238,1,'2024-11-25 20:24:36','2024-11-25 20:24:36','','42-web-or-mls-2105-Windward-Way-42','','inherit','open','closed','','42-web-or-mls-2105-windward-way-42-2','','','2024-11-25 20:24:36','2024-11-25 20:24:36','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/42-web-or-mls-2105-Windward-Way-42-1.jpg',0,'attachment','image/jpeg',0),
(239,1,'2024-11-25 20:24:37','2024-11-25 20:24:37','','36-web-or-mls-2105-Windward-Way-36','','inherit','open','closed','','36-web-or-mls-2105-windward-way-36-2','','','2024-11-25 20:24:37','2024-11-25 20:24:37','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/36-web-or-mls-2105-Windward-Way-36-1.jpg',0,'attachment','image/jpeg',0),
(240,1,'2024-11-25 20:24:37','2024-11-25 20:24:37','','43-web-or-mls-2105-Windward-Way-43','','inherit','open','closed','','43-web-or-mls-2105-windward-way-43-2','','','2024-11-25 20:24:37','2024-11-25 20:24:37','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/43-web-or-mls-2105-Windward-Way-43-1.jpg',0,'attachment','image/jpeg',0),
(241,1,'2024-11-25 20:24:38','2024-11-25 20:24:38','','44-web-or-mls-2105-Windward-Way-44','','inherit','open','closed','','44-web-or-mls-2105-windward-way-44-2','','','2024-11-25 20:24:38','2024-11-25 20:24:38','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/44-web-or-mls-2105-Windward-Way-44-1.jpg',0,'attachment','image/jpeg',0),
(242,1,'2024-11-25 20:24:38','2024-11-25 20:24:38','','39-web-or-mls-2105-Windward-Way-39','','inherit','open','closed','','39-web-or-mls-2105-windward-way-39-2','','','2024-11-25 20:24:38','2024-11-25 20:24:38','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/39-web-or-mls-2105-Windward-Way-39-1.jpg',0,'attachment','image/jpeg',0),
(243,1,'2024-11-25 20:24:39','2024-11-25 20:24:39','','40-web-or-mls-2105-Windward-Way-40','','inherit','open','closed','','40-web-or-mls-2105-windward-way-40-2','','','2024-11-25 20:24:39','2024-11-25 20:24:39','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/40-web-or-mls-2105-Windward-Way-40-1.jpg',0,'attachment','image/jpeg',0),
(244,1,'2024-11-25 20:24:40','2024-11-25 20:24:40','','38-web-or-mls-2105-Windward-Way-38','','inherit','open','closed','','38-web-or-mls-2105-windward-way-38-2','','','2024-11-25 20:24:40','2024-11-25 20:24:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/38-web-or-mls-2105-Windward-Way-38-1.jpg',0,'attachment','image/jpeg',0),
(245,1,'2024-11-25 20:24:40','2024-11-25 20:24:40','','4-web-or-mls-2105-Windward-Way-4','','inherit','open','closed','','4-web-or-mls-2105-windward-way-4','','','2024-11-25 20:24:40','2024-11-25 20:24:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4.jpg',0,'attachment','image/jpeg',0),
(246,1,'2024-11-25 20:24:41','2024-11-25 20:24:41','','3-web-or-mls-2105-Windward-Way-3','','inherit','open','closed','','3-web-or-mls-2105-windward-way-3','','','2024-11-25 20:24:41','2024-11-25 20:24:41','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3.jpg',0,'attachment','image/jpeg',0),
(247,1,'2024-11-25 20:24:42','2024-11-25 20:24:42','','5-web-or-mls-2105-Windward-Way-5','','inherit','open','closed','','5-web-or-mls-2105-windward-way-5','','','2024-11-25 20:24:42','2024-11-25 20:24:42','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5.jpg',0,'attachment','image/jpeg',0),
(248,1,'2024-11-25 20:24:42','2024-11-25 20:24:42','','1-web-or-mls-2105-Windward-Way-1','','inherit','open','closed','','1-web-or-mls-2105-windward-way-1','','','2024-11-25 20:24:42','2024-11-25 20:24:42','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1.jpg',0,'attachment','image/jpeg',0),
(249,1,'2024-11-25 20:24:54','2024-11-25 20:24:54','','17-web-or-mls-2105-Windward-Way-17','','inherit','open','closed','','17-web-or-mls-2105-windward-way-17-2','','','2024-11-25 20:24:54','2024-11-25 20:24:54','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/17-web-or-mls-2105-Windward-Way-17-1.jpg',0,'attachment','image/jpeg',0),
(250,1,'2024-11-25 20:24:55','2024-11-25 20:24:55','','12-web-or-mls-2105-Windward-Way-12','','inherit','open','closed','','12-web-or-mls-2105-windward-way-12-2','','','2024-11-25 20:24:55','2024-11-25 20:24:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/12-web-or-mls-2105-Windward-Way-12-1.jpg',0,'attachment','image/jpeg',0),
(251,1,'2024-11-25 20:24:55','2024-11-25 20:24:55','','19-web-or-mls-2105-Windward-Way-19','','inherit','open','closed','','19-web-or-mls-2105-windward-way-19-2','','','2024-11-25 20:24:55','2024-11-25 20:24:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/19-web-or-mls-2105-Windward-Way-19-1.jpg',0,'attachment','image/jpeg',0),
(252,1,'2024-11-25 20:24:56','2024-11-25 20:24:56','','13-web-or-mls-2105-Windward-Way-13','','inherit','open','closed','','13-web-or-mls-2105-windward-way-13-2','','','2024-11-25 20:24:56','2024-11-25 20:24:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/13-web-or-mls-2105-Windward-Way-13-1.jpg',0,'attachment','image/jpeg',0),
(253,1,'2024-11-25 20:24:57','2024-11-25 20:24:57','','20-web-or-mls-2105-Windward-Way-20','','inherit','open','closed','','20-web-or-mls-2105-windward-way-20-2','','','2024-11-25 20:24:57','2024-11-25 20:24:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/20-web-or-mls-2105-Windward-Way-20-1.jpg',0,'attachment','image/jpeg',0),
(254,1,'2024-11-25 20:24:57','2024-11-25 20:24:57','','21-web-or-mls-2105-Windward-Way-21','','inherit','open','closed','','21-web-or-mls-2105-windward-way-21-2','','','2024-11-25 20:24:57','2024-11-25 20:24:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/21-web-or-mls-2105-Windward-Way-21-1.jpg',0,'attachment','image/jpeg',0),
(255,1,'2024-11-25 20:24:58','2024-11-25 20:24:58','','33-web-or-mls-2105-Windward-Way-33','','inherit','open','closed','','33-web-or-mls-2105-windward-way-33-2','','','2024-11-25 20:24:58','2024-11-25 20:24:58','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/33-web-or-mls-2105-Windward-Way-33-1.jpg',0,'attachment','image/jpeg',0),
(256,1,'2024-11-25 20:24:59','2024-11-25 20:24:59','','32-web-or-mls-2105-Windward-Way-32','','inherit','open','closed','','32-web-or-mls-2105-windward-way-32-2','','','2024-11-25 20:24:59','2024-11-25 20:24:59','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/32-web-or-mls-2105-Windward-Way-32-1.jpg',0,'attachment','image/jpeg',0),
(257,1,'2024-11-25 20:24:59','2024-11-25 20:24:59','','34-web-or-mls-2105-Windward-Way-34','','inherit','open','closed','','34-web-or-mls-2105-windward-way-34-2','','','2024-11-25 20:24:59','2024-11-25 20:24:59','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/34-web-or-mls-2105-Windward-Way-34-1.jpg',0,'attachment','image/jpeg',0),
(258,1,'2024-11-25 20:25:00','2024-11-25 20:25:00','','48-web-or-mls-2105-Windward-Way-49','','inherit','open','closed','','48-web-or-mls-2105-windward-way-49-2','','','2024-11-25 20:25:00','2024-11-25 20:25:00','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/48-web-or-mls-2105-Windward-Way-49-1.jpg',0,'attachment','image/jpeg',0),
(259,1,'2024-11-25 20:25:00','2024-11-25 20:25:00','','51-web-or-mls-2105-Windward-Way-52','','inherit','open','closed','','51-web-or-mls-2105-windward-way-52-2','','','2024-11-25 20:25:00','2024-11-25 20:25:00','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/51-web-or-mls-2105-Windward-Way-52-1.jpg',0,'attachment','image/jpeg',0),
(260,1,'2024-11-25 20:25:01','2024-11-25 20:25:01','','50-web-or-mls-2105-Windward-Way-51','','inherit','open','closed','','50-web-or-mls-2105-windward-way-51-2','','','2024-11-25 20:25:01','2024-11-25 20:25:01','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/50-web-or-mls-2105-Windward-Way-51-1.jpg',0,'attachment','image/jpeg',0),
(261,1,'2024-11-25 20:25:01','2024-11-25 20:25:01','','49-web-or-mls-2105-Windward-Way-50','','inherit','open','closed','','49-web-or-mls-2105-windward-way-50-2','','','2024-11-25 20:25:01','2024-11-25 20:25:01','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/49-web-or-mls-2105-Windward-Way-50-1.jpg',0,'attachment','image/jpeg',0),
(262,1,'2024-11-25 20:25:02','2024-11-25 20:25:02','','65-web-or-mls-2105-Windward-Way-61','','inherit','open','closed','','65-web-or-mls-2105-windward-way-61-2','','','2024-11-25 20:25:02','2024-11-25 20:25:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/65-web-or-mls-2105-Windward-Way-61-1.jpg',0,'attachment','image/jpeg',0),
(263,1,'2024-11-25 20:25:03','2024-11-25 20:25:03','','57-web-or-mls-2105-Windward-Way-60','','inherit','open','closed','','57-web-or-mls-2105-windward-way-60','','','2024-11-25 20:25:03','2024-11-25 20:25:03','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/57-web-or-mls-2105-Windward-Way-60.jpg',0,'attachment','image/jpeg',0),
(264,1,'2024-11-25 20:25:03','2024-11-25 20:25:03','','66-web-or-mls-2105-Windward-Way-62','','inherit','open','closed','','66-web-or-mls-2105-windward-way-62-2','','','2024-11-25 20:25:03','2024-11-25 20:25:03','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/66-web-or-mls-2105-Windward-Way-62-1.jpg',0,'attachment','image/jpeg',0),
(265,1,'2024-11-25 20:25:04','2024-11-25 20:25:04','','69-web-or-mls-2105-Windward-Way-65','','inherit','open','closed','','69-web-or-mls-2105-windward-way-65-2','','','2024-11-25 20:25:04','2024-11-25 20:25:04','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/69-web-or-mls-2105-Windward-Way-65-1.jpg',0,'attachment','image/jpeg',0),
(266,1,'2024-11-25 20:25:05','2024-11-25 20:25:05','','68-web-or-mls-2105-Windward-Way-64','','inherit','open','closed','','68-web-or-mls-2105-windward-way-64-2','','','2024-11-25 20:25:05','2024-11-25 20:25:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/68-web-or-mls-2105-Windward-Way-64-1.jpg',0,'attachment','image/jpeg',0),
(267,1,'2024-11-25 20:25:05','2024-11-25 20:25:05','','70-web-or-mls-2105-Windward-Way-66','','inherit','open','closed','','70-web-or-mls-2105-windward-way-66-2','','','2024-11-25 20:25:05','2024-11-25 20:25:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/70-web-or-mls-2105-Windward-Way-66-1.jpg',0,'attachment','image/jpeg',0),
(268,1,'2024-11-25 20:25:06','2024-11-25 20:25:06','','55-web-or-mls-2105-Windward-Way-56','','inherit','open','closed','','55-web-or-mls-2105-windward-way-56-2','','','2024-11-25 20:25:06','2024-11-25 20:25:06','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/55-web-or-mls-2105-Windward-Way-56-1.jpg',0,'attachment','image/jpeg',0),
(269,1,'2024-11-25 20:25:19','2024-11-25 20:25:19','','4-web-or-mls-2105-Windward-Way-4','','inherit','open','closed','','4-web-or-mls-2105-windward-way-4-2','','','2024-11-25 20:25:19','2024-11-25 20:25:19','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4-web-or-mls-2105-Windward-Way-4-1.jpg',0,'attachment','image/jpeg',0),
(270,1,'2024-11-25 20:25:19','2024-11-25 20:25:19','','3-web-or-mls-2105-Windward-Way-3','','inherit','open','closed','','3-web-or-mls-2105-windward-way-3-2','','','2024-11-25 20:25:19','2024-11-25 20:25:19','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/3-web-or-mls-2105-Windward-Way-3-1.jpg',0,'attachment','image/jpeg',0),
(271,1,'2024-11-25 20:25:20','2024-11-25 20:25:20','','5-web-or-mls-2105-Windward-Way-5','','inherit','open','closed','','5-web-or-mls-2105-windward-way-5-2','','','2024-11-25 20:25:20','2024-11-25 20:25:20','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/5-web-or-mls-2105-Windward-Way-5-1.jpg',0,'attachment','image/jpeg',0),
(272,1,'2024-11-25 20:25:21','2024-11-25 20:25:21','','1-web-or-mls-2105-Windward-Way-1','','inherit','open','closed','','1-web-or-mls-2105-windward-way-1-2','','','2024-11-25 20:25:21','2024-11-25 20:25:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/1-web-or-mls-2105-Windward-Way-1-1.jpg',0,'attachment','image/jpeg',0),
(273,1,'2024-11-25 20:25:21','2024-11-25 20:25:21','','63-web-or-mls-2105-Windward-Way-59-2','','inherit','open','closed','','63-web-or-mls-2105-windward-way-59-2-2','','','2024-11-25 20:25:21','2024-11-25 20:25:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/63-web-or-mls-2105-Windward-Way-59-2-1.jpg',0,'attachment','image/jpeg',0),
(274,1,'2024-11-25 20:25:22','2024-11-25 20:25:22','','62-web-or-mls-2105-Windward-Way-58-2','','inherit','open','closed','','62-web-or-mls-2105-windward-way-58-2','','','2024-11-25 20:25:22','2024-11-25 20:25:22','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/62-web-or-mls-2105-Windward-Way-58-2.jpg',0,'attachment','image/jpeg',0),
(275,1,'2024-11-25 20:25:23','2024-11-25 20:25:23','','56-web-or-mls-2105-Windward-Way-57','','inherit','open','closed','','56-web-or-mls-2105-windward-way-57-2','','','2024-11-25 20:25:23','2024-11-25 20:25:23','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/56-web-or-mls-2105-Windward-Way-57-1.jpg',0,'attachment','image/jpeg',0),
(276,1,'2024-11-25 20:25:23','2024-11-25 20:25:23','','47-web-or-mls-2105-Windward-Way-48','','inherit','open','closed','','47-web-or-mls-2105-windward-way-48-2','','','2024-11-25 20:25:23','2024-11-25 20:25:23','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/47-web-or-mls-2105-Windward-Way-48-1.jpg',0,'attachment','image/jpeg',0),
(277,1,'2024-11-25 20:25:24','2024-11-25 20:25:24','','52-web-or-mls-2105-Windward-Way-53','','inherit','open','closed','','52-web-or-mls-2105-windward-way-53-2','','','2024-11-25 20:25:24','2024-11-25 20:25:24','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/52-web-or-mls-2105-Windward-Way-53-1.jpg',0,'attachment','image/jpeg',0),
(278,1,'2024-11-25 20:25:25','2024-11-25 20:25:25','','54-web-or-mls-2105-Windward-Way-55','','inherit','open','closed','','54-web-or-mls-2105-windward-way-55-2','','','2024-11-25 20:25:25','2024-11-25 20:25:25','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/54-web-or-mls-2105-Windward-Way-55-1.jpg',0,'attachment','image/jpeg',0),
(279,1,'2024-11-25 20:25:26','2024-11-25 20:25:26','','67-web-or-mls-2105-Windward-Way-63','','inherit','open','closed','','67-web-or-mls-2105-windward-way-63-2','','','2024-11-25 20:25:26','2024-11-25 20:25:26','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/67-web-or-mls-2105-Windward-Way-63-1.jpg',0,'attachment','image/jpeg',0),
(280,1,'2024-11-25 20:25:26','2024-11-25 20:25:26','','58-web-or-mls-2105-Windward-Way-47','','inherit','open','closed','','58-web-or-mls-2105-windward-way-47','','','2024-11-25 20:25:26','2024-11-25 20:25:26','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/58-web-or-mls-2105-Windward-Way-47.jpg',0,'attachment','image/jpeg',0),
(281,1,'2024-11-25 20:25:27','2024-11-25 20:25:27','','11-web-or-mls-2105-Windward-Way-11','','inherit','open','closed','','11-web-or-mls-2105-windward-way-11-2','','','2024-11-25 20:25:27','2024-11-25 20:25:27','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/11-web-or-mls-2105-Windward-Way-11-1.jpg',0,'attachment','image/jpeg',0),
(282,1,'2024-11-25 20:25:27','2024-11-25 20:25:27','','10-web-or-mls-2105-Windward-Way-10','','inherit','open','closed','','10-web-or-mls-2105-windward-way-10-2','','','2024-11-25 20:25:27','2024-11-25 20:25:27','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/10-web-or-mls-2105-Windward-Way-10-1.jpg',0,'attachment','image/jpeg',0),
(283,1,'2024-11-25 20:25:28','2024-11-25 20:25:28','','9-web-or-mls-2105-Windward-Way-9','','inherit','open','closed','','9-web-or-mls-2105-windward-way-9-2','','','2024-11-25 20:25:28','2024-11-25 20:25:28','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/9-web-or-mls-2105-Windward-Way-9-1.jpg',0,'attachment','image/jpeg',0),
(284,1,'2024-11-25 20:25:29','2024-11-25 20:25:29','','6-web-or-mls-2105-Windward-Way-6','','inherit','open','closed','','6-web-or-mls-2105-windward-way-6-2','','','2024-11-25 20:25:29','2024-11-25 20:25:29','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/6-web-or-mls-2105-Windward-Way-6-1.jpg',0,'attachment','image/jpeg',0),
(285,1,'2024-11-25 20:25:30','2024-11-25 20:25:30','','7-web-or-mls-2105-Windward-Way-7','','inherit','open','closed','','7-web-or-mls-2105-windward-way-7-2','','','2024-11-25 20:25:30','2024-11-25 20:25:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/7-web-or-mls-2105-Windward-Way-7-1.jpg',0,'attachment','image/jpeg',0),
(286,1,'2024-11-25 20:25:30','2024-11-25 20:25:30','','22-web-or-mls-2105-Windward-Way-22','','inherit','open','closed','','22-web-or-mls-2105-windward-way-22-2','','','2024-11-25 20:25:30','2024-11-25 20:25:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/22-web-or-mls-2105-Windward-Way-22-1.jpg',0,'attachment','image/jpeg',0),
(287,1,'2024-11-25 20:25:31','2024-11-25 20:25:31','','16-web-or-mls-2105-Windward-Way-16','','inherit','open','closed','','16-web-or-mls-2105-windward-way-16-2','','','2024-11-25 20:25:31','2024-11-25 20:25:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/16-web-or-mls-2105-Windward-Way-16-1.jpg',0,'attachment','image/jpeg',0),
(288,1,'2024-11-25 20:25:32','2024-11-25 20:25:32','','14-web-or-mls-2105-Windward-Way-14','','inherit','open','closed','','14-web-or-mls-2105-windward-way-14-2','','','2024-11-25 20:25:32','2024-11-25 20:25:32','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/14-web-or-mls-2105-Windward-Way-14-1.jpg',0,'attachment','image/jpeg',0),
(289,1,'2024-11-25 20:25:33','2024-11-25 20:25:33','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Photo Template','','tco-data','closed','closed','','photo-template','','','2024-11-25 20:25:33','2024-11-25 20:25:33','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=289',0,'cs_template','',0),
(290,1,'2024-11-25 20:27:21','2024-11-25 20:27:21','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"52\" ][cs_element_layout_grid _id=\"53\" ][cs_element_layout_cell _id=\"54\" ][cs_element_image _id=\"55\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"62\" ][cs_element_layout_grid _id=\"63\" ][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"68\" ][cs_element_image _id=\"69\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"70\" ][cs_element_image _id=\"71\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_row _id=\"73\" ][cs_element_layout_column _id=\"74\" ][cs_element_text _id=\"75\" ][cs_content_seo]Inside Living\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"76\" ][cs_element_layout_div _id=\"77\" ][cs_element_layout_grid _id=\"78\" ][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"83\" ][cs_element_image _id=\"84\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"87\" ][cs_element_layout_grid _id=\"88\" ][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"93\" ][cs_element_image _id=\"94\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"95\" ][cs_element_image _id=\"96\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"97\" ][cs_element_layout_grid _id=\"98\" ][cs_element_layout_cell _id=\"99\" ][cs_element_image _id=\"100\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"101\" ][cs_element_image _id=\"102\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"103\" ][cs_element_image _id=\"104\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"105\" ][cs_element_image _id=\"106\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"107\" ][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"118\" ][cs_element_layout_grid _id=\"119\" ][cs_element_layout_cell _id=\"120\" ][cs_element_image _id=\"121\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"122\" ][cs_element_image _id=\"123\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"124\" ][cs_element_layout_row _id=\"125\" ][cs_element_layout_column _id=\"126\" ][cs_element_text _id=\"127\" ][cs_content_seo]Paradise\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"128\" ][cs_element_layout_div _id=\"129\" ][cs_element_layout_grid _id=\"130\" ][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"137\" ][cs_element_image _id=\"138\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"139\" ][cs_element_layout_grid _id=\"140\" ][cs_element_layout_cell _id=\"141\" ][cs_element_image _id=\"142\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"143\" ][cs_element_image _id=\"144\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"145\" ][cs_element_image _id=\"146\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"147\" ][cs_element_image _id=\"148\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"159\" ][cs_element_layout_row _id=\"160\" ][cs_element_layout_column _id=\"161\" ][cs_element_text _id=\"162\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"163\" ][cs_element_layout_div _id=\"164\" ][cs_element_layout_grid _id=\"165\" ][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"168\" ][cs_element_image _id=\"169\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"170\" ][cs_element_image _id=\"171\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"172\" ][cs_element_image _id=\"173\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"174\" ][cs_element_layout_grid _id=\"175\" ][cs_element_layout_cell _id=\"176\" ][cs_element_image _id=\"177\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"178\" ][cs_element_image _id=\"179\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"180\" ][cs_element_image _id=\"181\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"182\" ][cs_element_image _id=\"183\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"184\" ][cs_element_layout_row _id=\"185\" ][cs_element_layout_column _id=\"186\" ][cs_element_text _id=\"187\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"188\" ][cs_element_layout_div _id=\"189\" ][cs_element_layout_grid _id=\"190\" ][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"193\" ][cs_element_image _id=\"194\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"195\" ][cs_element_layout_grid _id=\"196\" ][cs_element_layout_cell _id=\"197\" ][cs_element_image _id=\"198\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"199\" ][cs_element_image _id=\"200\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"201\" ][cs_element_image _id=\"202\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"203\" ][cs_element_image _id=\"204\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"205\" ][cs_element_layout_grid _id=\"206\" ][cs_element_layout_cell _id=\"207\" ][cs_element_image _id=\"208\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"209\" ][cs_element_image _id=\"210\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"211\" ][cs_element_image _id=\"212\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"213\" ][cs_element_image _id=\"214\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"215\" ][cs_element_layout_row _id=\"216\" ][cs_element_layout_column _id=\"217\" ][cs_element_text _id=\"218\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"219\" ][cs_element_layout_div _id=\"220\" ][cs_element_layout_grid _id=\"221\" ][cs_element_layout_cell _id=\"222\" ][cs_element_image _id=\"223\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"224\" ][cs_element_image _id=\"225\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"226\" ][cs_element_image _id=\"227\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"228\" ][cs_element_image _id=\"229\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"230\" ][cs_element_layout_grid _id=\"231\" ][cs_element_layout_cell _id=\"232\" ][cs_element_image _id=\"233\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"234\" ][cs_element_image _id=\"235\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"236\" ][cs_element_image _id=\"237\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"238\" ][cs_element_image _id=\"239\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"240\" ][cs_element_layout_grid _id=\"241\" ][cs_element_layout_cell _id=\"242\" ][cs_element_image _id=\"243\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"244\" ][cs_element_image _id=\"245\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"246\" ][cs_element_image _id=\"247\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"248\" ][cs_element_image _id=\"249\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:27:21','2024-11-25 20:27:21','',136,'https://dev.baselinestucco.com/?p=290',0,'revision','',0),
(291,1,'2024-11-25 20:29:47','2024-11-25 20:29:47','','4L9A4614','','inherit','open','closed','','4l9a4614','','','2024-11-25 20:29:47','2024-11-25 20:29:47','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4614.jpg',0,'attachment','image/jpeg',0),
(292,1,'2024-11-25 20:29:56','2024-11-25 20:29:56','','4L9A4617','','inherit','open','closed','','4l9a4617-2','','','2024-11-25 20:29:56','2024-11-25 20:29:56','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4617-1.jpg',0,'attachment','image/jpeg',0),
(293,1,'2024-11-25 20:34:33','2024-11-25 20:34:33','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Inside Living\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"77\" ][cs_element_layout_grid _id=\"78\" ][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"83\" ][cs_element_image _id=\"84\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"87\" ][cs_element_layout_div _id=\"88\" ][cs_element_layout_grid _id=\"89\" ][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Paradise\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"129\" ][cs_element_layout_grid _id=\"130\" ][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"137\" ][cs_element_image _id=\"138\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_layout_row _id=\"140\" ][cs_element_layout_column _id=\"141\" ][cs_element_text _id=\"142\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"143\" ][cs_element_layout_div _id=\"144\" ][cs_element_layout_grid _id=\"145\" ][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"154\" ][cs_element_layout_grid _id=\"155\" ][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"158\" ][cs_element_image _id=\"159\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"164\" ][cs_element_layout_row _id=\"165\" ][cs_element_layout_column _id=\"166\" ][cs_element_text _id=\"167\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"175\" ][cs_element_layout_grid _id=\"176\" ][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"183\" ][cs_element_image _id=\"184\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"185\" ][cs_element_layout_grid _id=\"186\" ][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"193\" ][cs_element_image _id=\"194\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"195\" ][cs_element_layout_row _id=\"196\" ][cs_element_layout_column _id=\"197\" ][cs_element_text _id=\"198\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"199\" ][cs_element_layout_div _id=\"200\" ][cs_element_layout_grid _id=\"201\" ][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"204\" ][cs_element_image _id=\"205\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"206\" ][cs_element_image _id=\"207\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"208\" ][cs_element_image _id=\"209\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"210\" ][cs_element_layout_grid _id=\"211\" ][cs_element_layout_cell _id=\"212\" ][cs_element_image _id=\"213\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"214\" ][cs_element_image _id=\"215\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"216\" ][cs_element_image _id=\"217\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"218\" ][cs_element_image _id=\"219\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"220\" ][cs_element_layout_grid _id=\"221\" ][cs_element_layout_cell _id=\"222\" ][cs_element_image _id=\"223\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"224\" ][cs_element_image _id=\"225\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"226\" ][cs_element_image _id=\"227\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"228\" ][cs_element_image _id=\"229\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:34:33','2024-11-25 20:34:33','',136,'https://dev.baselinestucco.com/?p=293',0,'revision','',0),
(294,1,'2024-11-25 20:36:47','2024-11-25 20:36:47','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"77\" ][cs_element_layout_grid _id=\"78\" ][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"83\" ][cs_element_image _id=\"84\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"87\" ][cs_element_layout_div _id=\"88\" ][cs_element_layout_grid _id=\"89\" ][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Paradise\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"129\" ][cs_element_layout_grid _id=\"130\" ][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"137\" ][cs_element_image _id=\"138\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"139\" ][cs_element_layout_row _id=\"140\" ][cs_element_layout_column _id=\"141\" ][cs_element_text _id=\"142\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"143\" ][cs_element_layout_div _id=\"144\" ][cs_element_layout_grid _id=\"145\" ][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"154\" ][cs_element_layout_grid _id=\"155\" ][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"158\" ][cs_element_image _id=\"159\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"164\" ][cs_element_layout_row _id=\"165\" ][cs_element_layout_column _id=\"166\" ][cs_element_text _id=\"167\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"175\" ][cs_element_layout_grid _id=\"176\" ][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"183\" ][cs_element_image _id=\"184\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"185\" ][cs_element_layout_grid _id=\"186\" ][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"193\" ][cs_element_image _id=\"194\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"195\" ][cs_element_layout_row _id=\"196\" ][cs_element_layout_column _id=\"197\" ][cs_element_text _id=\"198\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"199\" ][cs_element_layout_div _id=\"200\" ][cs_element_layout_grid _id=\"201\" ][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"204\" ][cs_element_image _id=\"205\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"206\" ][cs_element_image _id=\"207\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"208\" ][cs_element_image _id=\"209\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"210\" ][cs_element_layout_grid _id=\"211\" ][cs_element_layout_cell _id=\"212\" ][cs_element_image _id=\"213\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"214\" ][cs_element_image _id=\"215\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"216\" ][cs_element_image _id=\"217\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"218\" ][cs_element_image _id=\"219\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"220\" ][cs_element_layout_grid _id=\"221\" ][cs_element_layout_cell _id=\"222\" ][cs_element_image _id=\"223\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"224\" ][cs_element_image _id=\"225\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"226\" ][cs_element_image _id=\"227\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"228\" ][cs_element_image _id=\"229\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:36:47','2024-11-25 20:36:47','',136,'https://dev.baselinestucco.com/?p=294',0,'revision','',0),
(295,1,'2024-11-25 20:39:38','2024-11-25 20:39:38','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"102\" ][cs_element_layout_grid _id=\"103\" ][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"108\" ][cs_element_image _id=\"109\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_layout_row _id=\"113\" ][cs_element_layout_column _id=\"114\" ][cs_element_text _id=\"115\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"116\" ][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"127\" ][cs_element_layout_grid _id=\"128\" ][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_row _id=\"138\" ][cs_element_layout_column _id=\"139\" ][cs_element_text _id=\"140\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"141\" ][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_row _id=\"169\" ][cs_element_layout_column _id=\"170\" ][cs_element_text _id=\"171\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"172\" ][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"193\" ][cs_element_layout_grid _id=\"194\" ][cs_element_layout_cell _id=\"195\" ][cs_element_image _id=\"196\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"197\" ][cs_element_image _id=\"198\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"199\" ][cs_element_image _id=\"200\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"201\" ][cs_element_image _id=\"202\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:39:38','2024-11-25 20:39:38','',136,'https://dev.baselinestucco.com/?p=295',0,'revision','',0),
(296,1,'2024-11-25 20:41:48','2024-11-25 20:41:48','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"102\" ][cs_element_layout_grid _id=\"103\" ][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"108\" ][cs_element_image _id=\"109\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_layout_row _id=\"113\" ][cs_element_layout_column _id=\"114\" ][cs_element_text _id=\"115\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"116\" ][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"127\" ][cs_element_layout_grid _id=\"128\" ][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_row _id=\"138\" ][cs_element_layout_column _id=\"139\" ][cs_element_text _id=\"140\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"141\" ][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_row _id=\"169\" ][cs_element_layout_column _id=\"170\" ][cs_element_text _id=\"171\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"172\" ][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"193\" ][cs_element_layout_grid _id=\"194\" ][cs_element_layout_cell _id=\"195\" ][cs_element_image _id=\"196\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"197\" ][cs_element_image _id=\"198\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"199\" ][cs_element_image _id=\"200\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"201\" ][cs_element_image _id=\"202\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:41:48','2024-11-25 20:41:48','',136,'https://dev.baselinestucco.com/?p=296',0,'revision','',0),
(297,1,'2024-11-25 20:42:30','2024-11-25 20:42:30','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"102\" ][cs_element_layout_grid _id=\"103\" ][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"108\" ][cs_element_image _id=\"109\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"112\" ][cs_element_layout_row _id=\"113\" ][cs_element_layout_column _id=\"114\" ][cs_element_text _id=\"115\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"116\" ][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"127\" ][cs_element_layout_grid _id=\"128\" ][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_row _id=\"138\" ][cs_element_layout_column _id=\"139\" ][cs_element_text _id=\"140\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"141\" ][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_row _id=\"169\" ][cs_element_layout_column _id=\"170\" ][cs_element_text _id=\"171\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"172\" ][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"193\" ][cs_element_layout_grid _id=\"194\" ][cs_element_layout_cell _id=\"195\" ][cs_element_image _id=\"196\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"197\" ][cs_element_image _id=\"198\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"199\" ][cs_element_image _id=\"200\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"201\" ][cs_element_image _id=\"202\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:42:30','2024-11-25 20:42:30','',136,'https://dev.baselinestucco.com/?p=297',0,'revision','',0),
(298,1,'2024-11-25 20:44:27','2024-11-25 20:44:27','','4L9A7825','','inherit','open','closed','','4l9a7825','','','2024-11-25 20:44:27','2024-11-25 20:44:27','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A7825.jpg',0,'attachment','image/jpeg',0),
(299,1,'2024-11-25 20:44:36','2024-11-25 20:44:36','','4L9A7868','','inherit','open','closed','','4l9a7868','','','2024-11-25 20:44:36','2024-11-25 20:44:36','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A7868.jpg',0,'attachment','image/jpeg',0),
(300,1,'2024-11-25 20:47:46','2024-11-25 20:47:46','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Owner&rsquo;s Suite\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"127\" ][cs_element_layout_row _id=\"128\" ][cs_element_layout_column _id=\"129\" ][cs_element_text _id=\"130\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"158\" ][cs_element_layout_row _id=\"159\" ][cs_element_layout_column _id=\"160\" ][cs_element_text _id=\"161\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"162\" ][cs_element_layout_div _id=\"163\" ][cs_element_layout_grid _id=\"164\" ][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"169\" ][cs_element_image _id=\"170\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:47:46','2024-11-25 20:47:46','',136,'https://dev.baselinestucco.com/?p=300',0,'revision','',0),
(301,1,'2024-11-25 20:52:33','2024-11-25 20:52:33','','4L9A4629','','inherit','open','closed','','4l9a4629-2','','','2024-11-25 20:52:33','2024-11-25 20:52:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4629-1.jpg',0,'attachment','image/jpeg',0),
(302,1,'2024-11-25 20:52:48','2024-11-25 20:52:48','','4L9A4630','','inherit','open','closed','','4l9a4630-2','','','2024-11-25 20:52:48','2024-11-25 20:52:48','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4630-1.jpg',0,'attachment','image/jpeg',0),
(303,1,'2024-11-25 20:52:58','2024-11-25 20:52:58','','4L9A4632','','inherit','open','closed','','4l9a4632-2','','','2024-11-25 20:52:58','2024-11-25 20:52:58','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4632-1.jpg',0,'attachment','image/jpeg',0),
(304,1,'2024-11-25 20:53:09','2024-11-25 20:53:09','','4L9A4633','','inherit','open','closed','','4l9a4633-2','','','2024-11-25 20:53:09','2024-11-25 20:53:09','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4633-1.jpg',0,'attachment','image/jpeg',0),
(305,1,'2024-11-25 20:53:17','2024-11-25 20:53:17','','4L9A4634-Edit','','inherit','open','closed','','4l9a4634-edit-2','','','2024-11-25 20:53:17','2024-11-25 20:53:17','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4634-Edit-1.jpg',0,'attachment','image/jpeg',0),
(306,1,'2024-11-25 20:54:00','2024-11-25 20:54:00','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"127\" ][cs_element_layout_row _id=\"128\" ][cs_element_layout_column _id=\"129\" ][cs_element_text _id=\"130\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"131\" ][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"158\" ][cs_element_layout_row _id=\"159\" ][cs_element_layout_column _id=\"160\" ][cs_element_text _id=\"161\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"162\" ][cs_element_layout_div _id=\"163\" ][cs_element_layout_grid _id=\"164\" ][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"169\" ][cs_element_image _id=\"170\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 20:54:00','2024-11-25 20:54:00','',136,'https://dev.baselinestucco.com/?p=306',0,'revision','',0),
(307,1,'2024-11-25 20:59:03','2024-11-25 20:59:03','','4L9A4618','','inherit','open','closed','','4l9a4618-2','','','2024-11-25 20:59:03','2024-11-25 20:59:03','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4618-1.jpg',0,'attachment','image/jpeg',0),
(308,1,'2024-11-25 20:59:14','2024-11-25 20:59:14','','4L9A4626','','inherit','open','closed','','4l9a4626','','','2024-11-25 20:59:14','2024-11-25 20:59:14','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4626.jpg',0,'attachment','image/jpeg',0),
(309,1,'2024-11-25 20:59:28','2024-11-25 20:59:28','','4L9A4623','','inherit','open','closed','','4l9a4623','','','2024-11-25 20:59:28','2024-11-25 20:59:28','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4623.jpg',0,'attachment','image/jpeg',0),
(310,1,'2024-11-25 20:59:41','2024-11-25 20:59:41','','4L9A4622','','inherit','open','closed','','4l9a4622','','','2024-11-25 20:59:41','2024-11-25 20:59:41','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4622.jpg',0,'attachment','image/jpeg',0),
(311,1,'2024-11-25 20:59:55','2024-11-25 20:59:55','','4L9A4619','','inherit','open','closed','','4l9a4619','','','2024-11-25 20:59:55','2024-11-25 20:59:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4619.jpg',0,'attachment','image/jpeg',0),
(312,1,'2024-11-25 21:20:56','2024-11-25 21:20:56','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Hyundai\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"115\" ][cs_element_layout_row _id=\"116\" ][cs_element_layout_column _id=\"117\" ][cs_element_text _id=\"118\" ][cs_content_seo]Be Our Guest\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_layout_div _id=\"120\" ][cs_element_layout_grid _id=\"121\" ][cs_element_layout_cell _id=\"122\" ][cs_element_image _id=\"123\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"126\" ][cs_element_layout_grid _id=\"127\" ][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"132\" ][cs_element_image _id=\"133\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"136\" ][cs_element_layout_grid _id=\"137\" ][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"146\" ][cs_element_layout_row _id=\"147\" ][cs_element_layout_column _id=\"148\" ][cs_element_text _id=\"149\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"150\" ][cs_element_layout_div _id=\"151\" ][cs_element_layout_grid _id=\"152\" ][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"159\" ][cs_element_image _id=\"160\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"161\" ][cs_element_layout_grid _id=\"162\" ][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"169\" ][cs_element_image _id=\"170\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"171\" ][cs_element_layout_grid _id=\"172\" ][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 21:20:56','2024-11-25 21:20:56','',136,'https://dev.baselinestucco.com/?p=312',0,'revision','',0),
(313,1,'2024-11-25 21:25:24','2024-11-25 21:25:24','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 21:25:24','2024-11-25 21:25:24','',136,'https://dev.baselinestucco.com/?p=313',0,'revision','',0),
(314,1,'2024-11-25 21:26:07','2024-11-25 21:26:07','[cs_content _p=\'136\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Commerical Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Projects','','inherit','closed','closed','','136-revision-v1','','','2024-11-25 21:26:07','2024-11-25 21:26:07','',136,'https://dev.baselinestucco.com/?p=314',0,'revision','',0),
(315,1,'2024-11-26 20:48:45','2024-11-26 20:48:45','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Baseline Photo Gallery','','tco-data','closed','closed','','baseline-photo-gallery','','','2024-11-26 20:48:45','2024-11-26 20:48:45','',0,'https://dev.baselinestucco.com/?post_type=cs_template&#038;p=315',0,'cs_template','',0),
(316,1,'2024-11-25 04:40:16','2024-11-25 04:40:16','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][cs_element_text _id=\"12\" ][cs_content_seo]Our Commercial Stucco Services Include:\n\nStucco application for new commercial construction projects.\nRenovations and updates to existing stucco exteriors.\nEIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.\nCrack repair and restoration to maintain a professional appearance.\nCustom texturing and design to align with your company&rsquo;s branding.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_row _id=\"169\" ][cs_element_layout_column _id=\"170\" ][cs_element_text _id=\"171\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"172\" ][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"193\" ][cs_element_row _id=\"194\" ][cs_element_column _id=\"195\" ][cs_element_button _id=\"196\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','publish','closed','closed','','commercial','','','2024-11-26 20:38:48','2024-11-26 20:38:48','',0,'https://dev.baselinestucco.com/?page_id=316',0,'page','',0),
(317,1,'2024-11-25 21:27:04','2024-11-25 21:27:04','[cs_content _p=\'316\'][/cs_content]','Untitled Page','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 21:27:04','2024-11-25 21:27:04','',316,'https://dev.baselinestucco.com/?p=317',0,'revision','',0),
(318,1,'2024-11-25 21:35:01','2024-11-25 21:35:01','[cs_content _p=\'316\'][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 21:35:01','2024-11-25 21:35:01','',316,'https://dev.baselinestucco.com/?p=318',0,'revision','',0),
(319,1,'2024-11-25 21:35:16','2024-11-25 21:35:16','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Commerical Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 21:35:16','2024-11-25 21:35:16','',316,'https://dev.baselinestucco.com/?p=319',0,'revision','',0),
(320,1,'2024-11-25 16:40:56','2024-11-25 16:40:56','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Wappingers Falls, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Pleasantville, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]hillsdale, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_layout_row _id=\"120\" ][cs_element_layout_column _id=\"121\" ][cs_element_text _id=\"122\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"123\" ][cs_element_layout_div _id=\"124\" ][cs_element_layout_grid _id=\"125\" ][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"132\" ][cs_element_image _id=\"133\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"134\" ][cs_element_layout_row _id=\"135\" ][cs_element_layout_column _id=\"136\" ][cs_element_text _id=\"137\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"138\" ][cs_element_layout_div _id=\"139\" ][cs_element_layout_grid _id=\"140\" ][cs_element_layout_cell _id=\"141\" ][cs_element_image _id=\"142\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"143\" ][cs_element_image _id=\"144\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"145\" ][cs_element_image _id=\"146\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"147\" ][cs_element_image _id=\"148\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"169\" ][cs_element_layout_row _id=\"170\" ][cs_element_layout_column _id=\"171\" ][cs_element_text _id=\"172\" ][cs_content_seo]Fishkill, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"173\" ][cs_element_layout_div _id=\"174\" ][cs_element_layout_grid _id=\"175\" ][cs_element_layout_cell _id=\"176\" ][cs_element_image _id=\"177\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"178\" ][cs_element_image _id=\"179\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"180\" ][cs_element_image _id=\"181\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"182\" ][cs_element_image _id=\"183\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"184\" ][cs_element_row _id=\"185\" ][cs_element_column _id=\"186\" ][cs_element_button _id=\"187\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','publish','closed','closed','','residential','','','2024-11-27 14:28:35','2024-11-27 14:28:35','',0,'https://dev.baselinestucco.com/?page_id=320',0,'page','',0),
(321,1,'2024-11-25 21:35:37','2024-11-25 21:35:37','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Commerical Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Commercial (Copy)','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:35:37','2024-11-25 21:35:37','',320,'https://dev.baselinestucco.com/?p=321',0,'revision','',0),
(322,1,'2024-11-25 21:35:56','2024-11-25 21:35:56','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Comprehensive Commerical Stucco Solutions Tailored to Your Needs\\n\\nAt Baseline Stucco, we specialize in providing high-quality stucco and EIFS services for residential and commercial properties. Whether you\'re building new, renovating, or enhancing energy efficiency, our certified team delivers durable, beautiful finishes backed by 25+ years of expertise. Explore our services and discover how we can bring strength, style, and insulation to your next project.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:35:56','2024-11-25 21:35:56','',320,'https://dev.baselinestucco.com/?p=322',0,'revision','',0),
(324,1,'2024-11-26 00:10:30','2024-11-25 21:39:21',' ','','','publish','closed','closed','','324','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/25/324/',4,'nav_menu_item','',0),
(326,1,'2024-11-25 22:57:43','2024-11-25 21:41:21',' ','','','publish','closed','closed','','326','','','2024-11-25 22:57:43','2024-11-25 22:57:43','',0,'https://dev.baselinestucco.com/?p=326',2,'nav_menu_item','',0),
(328,1,'2024-11-25 21:44:39','2024-11-25 21:44:39','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 21:44:39','2024-11-25 21:44:39','',316,'https://dev.baselinestucco.com/?p=328',0,'revision','',0),
(329,1,'2024-11-25 21:46:17','2024-11-25 21:46:17','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_layout_row _id=\"53\" ][cs_element_layout_column _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"56\" ][cs_element_layout_div _id=\"57\" ][cs_element_layout_grid _id=\"58\" ][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"63\" ][cs_element_image _id=\"64\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"65\" ][cs_element_image _id=\"66\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"77\" ][cs_element_layout_row _id=\"78\" ][cs_element_layout_column _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_layout_div _id=\"82\" ][cs_element_layout_grid _id=\"83\" ][cs_element_layout_cell _id=\"84\" ][cs_element_image _id=\"85\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"117\" ][cs_element_layout_row _id=\"118\" ][cs_element_layout_column _id=\"119\" ][cs_element_text _id=\"120\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_layout_div _id=\"122\" ][cs_element_layout_grid _id=\"123\" ][cs_element_layout_cell _id=\"124\" ][cs_element_image _id=\"125\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"132\" ][cs_element_layout_grid _id=\"133\" ][cs_element_layout_cell _id=\"134\" ][cs_element_image _id=\"135\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"142\" ][cs_element_layout_grid _id=\"143\" ][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"148\" ][cs_element_image _id=\"149\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:46:17','2024-11-25 21:46:17','',320,'https://dev.baselinestucco.com/?p=329',0,'revision','',0),
(330,1,'2024-11-25 21:49:23','2024-11-25 21:49:23','','4L9A4605-2','','inherit','open','closed','','4l9a4605-2-2','','','2024-11-25 21:49:23','2024-11-25 21:49:23','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4605-2-1.jpg',0,'attachment','image/jpeg',0),
(331,1,'2024-11-25 21:49:41','2024-11-25 21:49:41','','4L9A4612','','inherit','open','closed','','4l9a4612','','','2024-11-25 21:49:41','2024-11-25 21:49:41','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4612.jpg',0,'attachment','image/jpeg',0),
(332,1,'2024-11-25 21:49:54','2024-11-25 21:49:54','','4L9A4609','','inherit','open','closed','','4l9a4609','','','2024-11-25 21:49:54','2024-11-25 21:49:54','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4609.jpg',0,'attachment','image/jpeg',0),
(333,1,'2024-11-25 21:50:13','2024-11-25 21:50:13','','4L9A4610','','inherit','open','closed','','4l9a4610','','','2024-11-25 21:50:13','2024-11-25 21:50:13','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4610.jpg',0,'attachment','image/jpeg',0),
(334,1,'2024-11-25 21:50:31','2024-11-25 21:50:31','','4L9A4607','','inherit','open','closed','','4l9a4607','','','2024-11-25 21:50:31','2024-11-25 21:50:31','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4607.jpg',0,'attachment','image/jpeg',0),
(335,1,'2024-11-25 21:50:43','2024-11-25 21:50:43','','4L9A4606','','inherit','open','closed','','4l9a4606','','','2024-11-25 21:50:43','2024-11-25 21:50:43','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4606.jpg',0,'attachment','image/jpeg',0),
(336,1,'2024-11-25 21:51:05','2024-11-25 21:51:05','','4L9A4604','','inherit','open','closed','','4l9a4604','','','2024-11-25 21:51:05','2024-11-25 21:51:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/4L9A4604.jpg',0,'attachment','image/jpeg',0),
(337,1,'2024-11-25 21:51:08','2024-11-25 21:51:08','','lawn','','inherit','open','closed','','lawn','','','2024-11-25 21:51:08','2024-11-25 21:51:08','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/lawn.jpg',0,'attachment','image/jpeg',0),
(338,1,'2024-11-25 21:53:30','2024-11-25 21:53:30','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"52\" ][cs_element_layout_grid _id=\"53\" ][cs_element_layout_cell _id=\"54\" ][cs_element_image _id=\"55\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_layout_row _id=\"63\" ][cs_element_layout_column _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"66\" ][cs_element_layout_div _id=\"67\" ][cs_element_layout_grid _id=\"68\" ][cs_element_layout_cell _id=\"69\" ][cs_element_image _id=\"70\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"77\" ][cs_element_layout_grid _id=\"78\" ][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"83\" ][cs_element_image _id=\"84\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"87\" ][cs_element_layout_row _id=\"88\" ][cs_element_layout_column _id=\"89\" ][cs_element_text _id=\"90\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"91\" ][cs_element_layout_div _id=\"92\" ][cs_element_layout_grid _id=\"93\" ][cs_element_layout_cell _id=\"94\" ][cs_element_image _id=\"95\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"102\" ][cs_element_layout_row _id=\"103\" ][cs_element_layout_column _id=\"104\" ][cs_element_text _id=\"105\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"106\" ][cs_element_layout_div _id=\"107\" ][cs_element_layout_grid _id=\"108\" ][cs_element_layout_cell _id=\"109\" ][cs_element_image _id=\"110\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"117\" ][cs_element_layout_grid _id=\"118\" ][cs_element_layout_cell _id=\"119\" ][cs_element_image _id=\"120\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"127\" ][cs_element_layout_grid _id=\"128\" ][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"133\" ][cs_element_image _id=\"134\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"135\" ][cs_element_image _id=\"136\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:53:30','2024-11-25 21:53:30','',320,'https://dev.baselinestucco.com/?p=338',0,'revision','',0),
(339,1,'2024-11-25 21:53:55','2024-11-25 21:53:55','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"52\" ][cs_element_layout_grid _id=\"53\" ][cs_element_layout_cell _id=\"54\" ][cs_element_image _id=\"55\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:53:55','2024-11-25 21:53:55','',320,'https://dev.baselinestucco.com/?p=339',0,'revision','',0),
(340,1,'2024-11-25 21:54:49','2024-11-25 21:54:49','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"18\" ][cs_element_row _id=\"19\" ][cs_element_column _id=\"20\" ][cs_element_button _id=\"21\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"23\" ][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"33\" ][cs_element_headline _id=\"34\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"35\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"37\" ][cs_element_layout_row _id=\"38\" ][cs_element_layout_column _id=\"39\" ][cs_element_text _id=\"40\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"41\" ][cs_element_layout_div _id=\"42\" ][cs_element_layout_grid _id=\"43\" ][cs_element_layout_cell _id=\"44\" ][cs_element_image _id=\"45\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"52\" ][cs_element_layout_grid _id=\"53\" ][cs_element_layout_cell _id=\"54\" ][cs_element_image _id=\"55\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"62\" ][cs_element_row _id=\"63\" ][cs_element_column _id=\"64\" ][cs_element_button _id=\"65\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"66\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:54:49','2024-11-25 21:54:49','',320,'https://dev.baselinestucco.com/?p=340',0,'revision','',0),
(341,1,'2024-11-25 21:57:41','2024-11-25 21:57:41','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\n 	Customizable Designs: Choose from a wide range of colors and textures to suit your style.\n 	Increased Property Value: Enhance your home\'s curb appeal and market value.\n 	Energy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\n 	Weather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\n 	Low Maintenance: Durable and easy to maintain, saving you time and effort.\n\nOur Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"12\" ][cs_element_column _id=\"13\" ][cs_element_counter _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_counter _id=\"16\" ][/cs_element_column][cs_element_column _id=\"17\" ][cs_element_counter _id=\"18\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"19\" ][cs_element_row _id=\"20\" ][cs_element_column _id=\"21\" ][cs_element_button _id=\"22\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"24\" ][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"30\" ][cs_element_headline _id=\"31\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"38\" ][cs_element_layout_row _id=\"39\" ][cs_element_layout_column _id=\"40\" ][cs_element_text _id=\"41\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"42\" ][cs_element_layout_div _id=\"43\" ][cs_element_layout_grid _id=\"44\" ][cs_element_layout_cell _id=\"45\" ][cs_element_image _id=\"46\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"47\" ][cs_element_image _id=\"48\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"49\" ][cs_element_image _id=\"50\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"51\" ][cs_element_image _id=\"52\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"53\" ][cs_element_layout_grid _id=\"54\" ][cs_element_layout_cell _id=\"55\" ][cs_element_image _id=\"56\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"57\" ][cs_element_image _id=\"58\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"63\" ][cs_element_row _id=\"64\" ][cs_element_column _id=\"65\" ][cs_element_button _id=\"66\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"67\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:57:41','2024-11-25 21:57:41','',320,'https://dev.baselinestucco.com/?p=341',0,'revision','',0),
(342,1,'2024-11-25 21:58:11','2024-11-25 21:58:11','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\nOur Residential Stucco Services Include:\n\nNew construction stucco applications.\nRenovations and upgrades to existing stucco finishes.\nCrack repair and seamless patchwork for a flawless look.\nCustom texturing and color matching to fit your home&rsquo;s design.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"12\" ][cs_element_column _id=\"13\" ][cs_element_counter _id=\"14\" ][/cs_element_column][cs_element_column _id=\"15\" ][cs_element_counter _id=\"16\" ][/cs_element_column][cs_element_column _id=\"17\" ][cs_element_counter _id=\"18\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"19\" ][cs_element_row _id=\"20\" ][cs_element_column _id=\"21\" ][cs_element_button _id=\"22\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"24\" ][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_headline _id=\"27\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"28\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"30\" ][cs_element_headline _id=\"31\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"32\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_headline _id=\"35\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"36\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"38\" ][cs_element_layout_row _id=\"39\" ][cs_element_layout_column _id=\"40\" ][cs_element_text _id=\"41\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"42\" ][cs_element_layout_div _id=\"43\" ][cs_element_layout_grid _id=\"44\" ][cs_element_layout_cell _id=\"45\" ][cs_element_image _id=\"46\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"47\" ][cs_element_image _id=\"48\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"49\" ][cs_element_image _id=\"50\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"51\" ][cs_element_image _id=\"52\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"53\" ][cs_element_layout_grid _id=\"54\" ][cs_element_layout_cell _id=\"55\" ][cs_element_image _id=\"56\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"57\" ][cs_element_image _id=\"58\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"59\" ][cs_element_image _id=\"60\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"61\" ][cs_element_image _id=\"62\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"63\" ][cs_element_row _id=\"64\" ][cs_element_column _id=\"65\" ][cs_element_button _id=\"66\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"67\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:58:11','2024-11-25 21:58:11','',320,'https://dev.baselinestucco.com/?p=342',0,'revision','',0),
(343,1,'2024-11-25 21:58:52','2024-11-25 21:58:52','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_row _id=\"65\" ][cs_element_column _id=\"66\" ][cs_element_button _id=\"67\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"68\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 21:58:52','2024-11-25 21:58:52','',320,'https://dev.baselinestucco.com/?p=343',0,'revision','',0),
(344,1,'2024-11-25 22:01:38','2024-11-25 22:01:38','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_row _id=\"65\" ][cs_element_column _id=\"66\" ][cs_element_button _id=\"67\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-25 22:01:38','2024-11-25 22:01:38','',320,'https://dev.baselinestucco.com/?p=344',0,'revision','',0),
(345,1,'2024-11-25 22:01:55','2024-11-25 22:01:55','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Residential','','tco-data','closed','closed','','residential','','','2024-11-25 22:01:55','2024-11-25 22:01:55','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=345',0,'cs_template','',0),
(346,1,'2024-11-25 22:04:44','2024-11-25 22:04:44','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"6\" ][cs_element_image _id=\"7\" ][cs_element_text _id=\"8\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_counter _id=\"11\" ][/cs_element_column][cs_element_column _id=\"12\" ][cs_element_counter _id=\"13\" ][/cs_element_column][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"16\" ][cs_element_row _id=\"17\" ][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:04:44','2024-11-25 22:04:44','',316,'https://dev.baselinestucco.com/?p=346',0,'revision','',0),
(347,1,'2024-11-25 22:05:24','2024-11-25 22:05:24','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:05:24','2024-11-25 22:05:24','',316,'https://dev.baselinestucco.com/?p=347',0,'revision','',0),
(348,1,'2024-11-25 22:08:10','2024-11-25 22:08:10','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish—it\'s a lasting investment in your home’s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:08:10','2024-11-25 22:08:10','',316,'https://dev.baselinestucco.com/?p=348',0,'revision','',0),
(349,1,'2024-11-25 22:08:33','2024-11-25 22:08:33','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter—especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you’re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.\nStucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida’s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:08:33','2024-11-25 22:08:33','',316,'https://dev.baselinestucco.com/?p=349',0,'revision','',0),
(350,1,'2024-11-25 22:09:23','2024-11-25 22:09:23','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter—especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you’re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.\nStucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida’s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:09:23','2024-11-25 22:09:23','',316,'https://dev.baselinestucco.com/?p=350',0,'revision','',0),
(351,1,'2024-11-25 22:13:22','2024-11-25 22:13:22','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:13:22','2024-11-25 22:13:22','',316,'https://dev.baselinestucco.com/?p=351',0,'revision','',0),
(352,1,'2024-11-25 22:13:43','2024-11-25 22:13:43','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Commercial Stucco Services Include:\n\nStucco application for new commercial construction projects.\nRenovations and updates to existing stucco exteriors.\nEIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.\nCrack repair and restoration to maintain a professional appearance.\nCustom texturing and design to align with your company&rsquo;s branding.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-25 22:13:43','2024-11-25 22:13:43','',316,'https://dev.baselinestucco.com/?p=352',0,'revision','',0),
(353,1,'2024-11-25 22:21:55','2024-11-25 22:21:55','<!-- wp:image {\"id\":354,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80.webp\" alt=\"\" class=\"wp-image-354\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Living in Florida means enjoying year-round sunshine and stunning coastlines, but it also means preparing for hurricane season. When it comes to protecting your home or commercial property, choosing the right exterior finish is essential. At Baseline Stucco, we specialize in durable, high-quality stucco and EIFS (Exterior Insulation Finish System) solutions that are not only visually appealing but also designed to withstand Florida’s harsh weather conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here’s why Baseline Stucco is the ideal choice for hurricane-prone areas in Florida:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Superior Weather Resistance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco is inherently resistant to wind, rain, and humidity, making it a robust choice for hurricane-prone regions. At Baseline Stucco, we take it a step further by using premium materials and proven techniques to ensure your stucco application can withstand the elements. Our certified team applies finishes designed to seal out moisture and reduce the risk of water intrusion—a critical factor in maintaining your property’s structural integrity during storms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Added Strength with EIFS Insulation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our EIFS solutions provide an added layer of protection by incorporating insulation into the exterior finish. This system not only improves energy efficiency but also adds flexibility and durability to the building’s exterior, reducing the risk of cracks or damage caused by high winds. With R-values as high as 12 or more, EIFS also helps stabilize indoor temperatures during power outages, keeping your home comfortable even in extreme conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Long-Lasting Durability</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Unlike other exterior finishes that may degrade quickly under Florida’s intense sun and heavy rain, stucco is built to last. With over 25 years of experience, we’ve perfected our application process to create finishes that resist cracking, fading, and general wear and tear. Our commitment to quality ensures that your property remains protected and visually appealing for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Fully Insured and Certified for Peace of Mind</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When choosing a stucco contractor in a hurricane-prone area, it’s essential to work with a team you can trust. Baseline Stucco is fully insured and certified in leading stucco systems, including STO, Dryvit, Parex, and Decoplast. These certifications reflect our expertise in using the best materials and practices to provide durable and reliable solutions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Expert Repairs and Renovations</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your home or building has sustained damage from previous storms, our renovation and repair services can restore your stucco to like-new condition. We specialize in seamless repairs that not only fix damage but also strengthen the overall structure to better withstand future weather events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Local Expertise You Can Rely On</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As a Florida-based company, we understand the unique challenges of living and building in a hurricane-prone region. We’re not just contractors—we’re your neighbors, and we’re committed to helping our community stay safe and secure. With free estimates and personalized project planning, we make it easy to protect your property with the best stucco solutions available.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Warranties That Back Our Work</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we stand behind the quality of our work. That’s why we offer both manufacturer warranties on materials and workmanship warranties on our services. These guarantees give you peace of mind, knowing that your investment is protected no matter what the weather brings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Choose Baseline Stucco for Hurricane-Ready Solutions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Protecting your property from Florida’s hurricanes starts with choosing the right exterior finish. At Baseline Stucco, we combine 25+ years of expertise, cutting-edge materials, and a commitment to excellence to deliver solutions that are as strong as they are beautiful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re building new, renovating, or simply looking for ways to fortify your home or business, our team is here to help. Contact us today for a free estimate and see how we can provide the durability, energy efficiency, and peace of mind you need in a hurricane-prone region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','The Benefits of Choosing Baseline Stucco for Hurricane-Ready Homes and Buildings in Florida','','draft','open','open','','the-benefits-of-choosing-baseline-stucco-for-hurricane-ready-homes-and-buildings-in-florida','','','2024-11-27 14:30:45','2024-11-27 14:30:45','',0,'https://dev.baselinestucco.com/?p=353',0,'post','',0),
(354,1,'2024-11-25 22:21:20','2024-11-25 22:21:20','','verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80','','inherit','open','closed','','verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80','','','2024-11-25 22:21:20','2024-11-25 22:21:20','',353,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80.webp',0,'attachment','image/webp',0),
(355,1,'2024-11-25 22:21:55','2024-11-25 22:21:55','<!-- wp:image {\"id\":354,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_stucco_house_in_a_flor_1d2369f6-c1e5-418f-a59c-9f471d33ba80.webp\" alt=\"\" class=\"wp-image-354\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Living in Florida means enjoying year-round sunshine and stunning coastlines, but it also means preparing for hurricane season. When it comes to protecting your home or commercial property, choosing the right exterior finish is essential. At Baseline Stucco, we specialize in durable, high-quality stucco and EIFS (Exterior Insulation Finish System) solutions that are not only visually appealing but also designed to withstand Florida’s harsh weather conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here’s why Baseline Stucco is the ideal choice for hurricane-prone areas in Florida:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Superior Weather Resistance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco is inherently resistant to wind, rain, and humidity, making it a robust choice for hurricane-prone regions. At Baseline Stucco, we take it a step further by using premium materials and proven techniques to ensure your stucco application can withstand the elements. Our certified team applies finishes designed to seal out moisture and reduce the risk of water intrusion—a critical factor in maintaining your property’s structural integrity during storms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Added Strength with EIFS Insulation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our EIFS solutions provide an added layer of protection by incorporating insulation into the exterior finish. This system not only improves energy efficiency but also adds flexibility and durability to the building’s exterior, reducing the risk of cracks or damage caused by high winds. With R-values as high as 12 or more, EIFS also helps stabilize indoor temperatures during power outages, keeping your home comfortable even in extreme conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Long-Lasting Durability</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Unlike other exterior finishes that may degrade quickly under Florida’s intense sun and heavy rain, stucco is built to last. With over 25 years of experience, we’ve perfected our application process to create finishes that resist cracking, fading, and general wear and tear. Our commitment to quality ensures that your property remains protected and visually appealing for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Fully Insured and Certified for Peace of Mind</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When choosing a stucco contractor in a hurricane-prone area, it’s essential to work with a team you can trust. Baseline Stucco is fully insured and certified in leading stucco systems, including STO, Dryvit, Parex, and Decoplast. These certifications reflect our expertise in using the best materials and practices to provide durable and reliable solutions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Expert Repairs and Renovations</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your home or building has sustained damage from previous storms, our renovation and repair services can restore your stucco to like-new condition. We specialize in seamless repairs that not only fix damage but also strengthen the overall structure to better withstand future weather events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Local Expertise You Can Rely On</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As a Florida-based company, we understand the unique challenges of living and building in a hurricane-prone region. We’re not just contractors—we’re your neighbors, and we’re committed to helping our community stay safe and secure. With free estimates and personalized project planning, we make it easy to protect your property with the best stucco solutions available.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Warranties That Back Our Work</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we stand behind the quality of our work. That’s why we offer both manufacturer warranties on materials and workmanship warranties on our services. These guarantees give you peace of mind, knowing that your investment is protected no matter what the weather brings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Choose Baseline Stucco for Hurricane-Ready Solutions</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Protecting your property from Florida’s hurricanes starts with choosing the right exterior finish. At Baseline Stucco, we combine 25+ years of expertise, cutting-edge materials, and a commitment to excellence to deliver solutions that are as strong as they are beautiful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re building new, renovating, or simply looking for ways to fortify your home or business, our team is here to help. Contact us today for a free estimate and see how we can provide the durability, energy efficiency, and peace of mind you need in a hurricane-prone region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','The Benefits of Choosing Baseline Stucco for Hurricane-Ready Homes and Buildings in Florida','','inherit','closed','closed','','353-revision-v1','','','2024-11-25 22:21:55','2024-11-25 22:21:55','',353,'https://dev.baselinestucco.com/?p=355',0,'revision','',0),
(356,1,'2024-11-25 22:24:21','2024-11-25 22:24:21','<!-- wp:image {\"id\":357,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1.webp\" alt=\"\" class=\"wp-image-357\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we take traditional stucco to the next level by incorporating advanced materials, innovative techniques, and modern insulation systems like EIFS (Exterior Insulation Finish System). Here’s how we differ:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>1. Advanced Materials for Enhanced Performance</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Relies on cement-based mixtures that can be prone to cracking over time, especially in areas with fluctuating temperatures or settling foundations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Utilizes high-quality, modern materials certified by leading brands like STO, Dryvit, Parex, and Decoplast. These materials are engineered for flexibility, reducing the risk of cracks and ensuring long-lasting finishes.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>2. Energy Efficiency with EIFS</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Does not include insulation, offering minimal energy-saving benefits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Incorporates EIFS, a multi-layered system that includes insulation, reducing heating and cooling costs. With R-values up to 12 or more, EIFS significantly improves energy efficiency while maintaining a sleek, modern appearance.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>3. Superior Weather Resistance</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Provides basic protection but may absorb moisture, leading to potential water damage or mold in high-humidity areas.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Features advanced waterproofing techniques and materials that resist moisture intrusion. This is especially crucial in Florida, where heavy rains and hurricanes are frequent.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>4. Customization and Aesthetic Options</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Limited to textures and colors achieved through manual application and basic materials.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Offers an extensive range of textures, finishes, and colors tailored to your specific design preferences. Whether you want a classic Mediterranean look or a modern, smooth finish, we deliver a personalized result.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>5. Certified Expertise and Guarantees</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Often applied by general contractors with varying levels of experience.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Our team is certified in STO, Dryvit, Parex, and Decoplast systems, ensuring expert application and adherence to industry standards. We back our work with manufacturer and workmanship warranties for added peace of mind.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Choose Baseline Stucco?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to protecting and beautifying your property, Baseline Stucco goes above and beyond traditional stucco work. With over 25 years of experience, we specialize in providing durable, energy-efficient, and visually stunning finishes for both residential and commercial projects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our commitment to quality, innovation, and customer satisfaction ensures that your stucco project will not only meet but exceed your expectations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Ready to Experience the Baseline Difference?</strong><br>Whether you\'re building new, renovating, or repairing, Baseline Stucco offers solutions designed to stand the test of time and Florida’s challenging climate. Contact us today for a free consultation and discover how we can bring your vision to life with modern stucco solutions that outperform the traditional.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Traditional Stucco vs. Baseline Stucco: What Sets Us Apart','','publish','open','open','','traditional-stucco-vs-baseline-stucco-what-sets-us-apart','','','2024-11-25 22:24:22','2024-11-25 22:24:22','',0,'https://dev.baselinestucco.com/?p=356',0,'post','',0),
(357,1,'2024-11-25 22:23:50','2024-11-25 22:23:50','','verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1','','inherit','open','closed','','verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1','','','2024-11-25 22:23:50','2024-11-25 22:23:50','',356,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1.webp',0,'attachment','image/webp',0),
(358,1,'2024-11-25 22:24:21','2024-11-25 22:24:21','<!-- wp:image {\"id\":357,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_a_realistic_image_of_someone_doing_an_a61bf4bb-65f3-4f5d-a20a-c54db7b9b076-1.webp\" alt=\"\" class=\"wp-image-357\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we take traditional stucco to the next level by incorporating advanced materials, innovative techniques, and modern insulation systems like EIFS (Exterior Insulation Finish System). Here’s how we differ:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>1. Advanced Materials for Enhanced Performance</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Relies on cement-based mixtures that can be prone to cracking over time, especially in areas with fluctuating temperatures or settling foundations.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Utilizes high-quality, modern materials certified by leading brands like STO, Dryvit, Parex, and Decoplast. These materials are engineered for flexibility, reducing the risk of cracks and ensuring long-lasting finishes.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>2. Energy Efficiency with EIFS</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Does not include insulation, offering minimal energy-saving benefits.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Incorporates EIFS, a multi-layered system that includes insulation, reducing heating and cooling costs. With R-values up to 12 or more, EIFS significantly improves energy efficiency while maintaining a sleek, modern appearance.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>3. Superior Weather Resistance</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Provides basic protection but may absorb moisture, leading to potential water damage or mold in high-humidity areas.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Features advanced waterproofing techniques and materials that resist moisture intrusion. This is especially crucial in Florida, where heavy rains and hurricanes are frequent.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>4. Customization and Aesthetic Options</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Limited to textures and colors achieved through manual application and basic materials.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Offers an extensive range of textures, finishes, and colors tailored to your specific design preferences. Whether you want a classic Mediterranean look or a modern, smooth finish, we deliver a personalized result.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>5. Certified Expertise and Guarantees</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Traditional Stucco:</strong> Often applied by general contractors with varying levels of experience.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Baseline Stucco:</strong> Our team is certified in STO, Dryvit, Parex, and Decoplast systems, ensuring expert application and adherence to industry standards. We back our work with manufacturer and workmanship warranties for added peace of mind.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Choose Baseline Stucco?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to protecting and beautifying your property, Baseline Stucco goes above and beyond traditional stucco work. With over 25 years of experience, we specialize in providing durable, energy-efficient, and visually stunning finishes for both residential and commercial projects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our commitment to quality, innovation, and customer satisfaction ensures that your stucco project will not only meet but exceed your expectations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p><strong>Ready to Experience the Baseline Difference?</strong><br>Whether you\'re building new, renovating, or repairing, Baseline Stucco offers solutions designed to stand the test of time and Florida’s challenging climate. Contact us today for a free consultation and discover how we can bring your vision to life with modern stucco solutions that outperform the traditional.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Traditional Stucco vs. Baseline Stucco: What Sets Us Apart','','inherit','closed','closed','','356-revision-v1','','','2024-11-25 22:24:21','2024-11-25 22:24:21','',356,'https://dev.baselinestucco.com/?p=358',0,'revision','',0),
(359,1,'2024-11-25 22:29:03','2024-11-25 22:29:03','<!-- wp:image {\"id\":360,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5.webp\" alt=\"\" class=\"wp-image-360\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>In Florida’s hot and humid climate, energy efficiency is more than just a convenience—it’s a necessity. Heating and cooling costs can quickly add up, especially during the sweltering summer months. For property owners looking to improve insulation, lower energy bills, and enhance the exterior appearance of their building, EIFS (Exterior Insulation Finish System) is an ideal solution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in EIFS installations designed to deliver both form and function. Here’s how EIFS can make your home or business more energy-efficient while providing additional benefits.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>What is EIFS?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>EIFS is a multi-layered exterior cladding system that provides superior insulation and a sleek, customizable finish. Unlike traditional stucco, which is purely decorative, EIFS incorporates insulation boards, a weather-resistant barrier, and a durable finishing coat. This combination not only enhances your building’s appearance but also significantly improves its energy performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Improved Insulation for Energy Savings</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the primary advantages of EIFS is its ability to reduce energy consumption. The insulation layer, typically made of expanded polystyrene (EPS), creates a thermal barrier that minimizes heat transfer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Higher R-Values:</strong> EIFS provides R-values starting at 6 and can go up to 12 or higher, depending on the thickness of the foam. This level of insulation helps maintain a consistent indoor temperature, reducing the need for excessive heating or cooling.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduced Energy Costs:</strong> By keeping your home or building cooler in the summer and warmer in the winter, EIFS lowers your HVAC system\'s workload, leading to significant savings on energy bills.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Moisture Control and Weather Resistance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Florida’s climate is notorious for heavy rains, high humidity, and occasional hurricanes. EIFS offers excellent moisture management, protecting your building from water intrusion and the damage it can cause.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Seamless Barrier:</strong> The weather-resistant layer in EIFS prevents water from penetrating the building’s structure, reducing the risk of mold and rot.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Durable Finishes:</strong> EIFS coatings are designed to withstand wind, rain, and sun, making them ideal for Florida’s challenging weather conditions.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Lightweight and Flexible Design</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Unlike traditional stucco or brick, EIFS is lightweight, which makes it more adaptable to building movements caused by settling or thermal expansion. This flexibility minimizes the risk of cracks, ensuring a long-lasting, energy-efficient exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Enhanced Curb Appeal</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Energy efficiency doesn’t have to come at the expense of aesthetics. EIFS offers a wide range of textures, colors, and finishes, allowing property owners to achieve their desired look without sacrificing performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Customizable Designs:</strong> Whether you prefer a smooth modern finish or a classic textured appearance, EIFS can be tailored to match your style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Boosted Property Value:</strong> The combination of improved energy efficiency and enhanced appearance makes EIFS a valuable investment for your property.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Sustainability and Environmental Benefits</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By reducing energy consumption, EIFS contributes to a smaller carbon footprint. Additionally, many EIFS systems are made from sustainable materials, further enhancing their environmental appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Choose Baseline Stucco for Your EIFS Installation?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we have over 25 years of experience providing high-quality stucco and EIFS solutions for residential and commercial properties. Our certified team is skilled in using leading EIFS systems from STO, Dryvit, Parex, and Decoplast, ensuring every installation meets the highest standards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Expert Installation:</strong> Our team follows meticulous procedures to ensure a flawless application and maximum energy efficiency.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Customized Solutions:</strong> We work with you to design an EIFS system that fits your property’s unique needs and style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Warranties for Peace of Mind:</strong> With manufacturer and workmanship warranties, you can trust that your investment is protected.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Transform Your Property with Energy-Efficient EIFS</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re building new or upgrading an existing property, EIFS is a smart choice for energy efficiency, durability, and aesthetic appeal. Contact Baseline Stucco today for a free estimate and learn how we can help you save on energy costs while enhancing your property’s look and value.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','The Energy Efficiency Benefits of EIFS for Florida Homes and Businesses','','draft','open','open','','the-energy-efficiency-benefits-of-eifs-for-florida-homes-and-businesses','','','2024-11-27 14:30:37','2024-11-27 14:30:37','',0,'https://dev.baselinestucco.com/?p=359',0,'post','',0),
(360,1,'2024-11-25 22:28:40','2024-11-25 22:28:40','','verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5','','inherit','open','closed','','verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5','','','2024-11-25 22:28:40','2024-11-25 22:28:40','',359,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5.webp',0,'attachment','image/webp',0),
(361,1,'2024-11-25 22:29:03','2024-11-25 22:29:03','<!-- wp:image {\"id\":360,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_sun_and_solar_power_846be9d1-849d-4ff7-982c-ee3f427cdde5.webp\" alt=\"\" class=\"wp-image-360\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>In Florida’s hot and humid climate, energy efficiency is more than just a convenience—it’s a necessity. Heating and cooling costs can quickly add up, especially during the sweltering summer months. For property owners looking to improve insulation, lower energy bills, and enhance the exterior appearance of their building, EIFS (Exterior Insulation Finish System) is an ideal solution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in EIFS installations designed to deliver both form and function. Here’s how EIFS can make your home or business more energy-efficient while providing additional benefits.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>What is EIFS?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>EIFS is a multi-layered exterior cladding system that provides superior insulation and a sleek, customizable finish. Unlike traditional stucco, which is purely decorative, EIFS incorporates insulation boards, a weather-resistant barrier, and a durable finishing coat. This combination not only enhances your building’s appearance but also significantly improves its energy performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Improved Insulation for Energy Savings</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the primary advantages of EIFS is its ability to reduce energy consumption. The insulation layer, typically made of expanded polystyrene (EPS), creates a thermal barrier that minimizes heat transfer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Higher R-Values:</strong> EIFS provides R-values starting at 6 and can go up to 12 or higher, depending on the thickness of the foam. This level of insulation helps maintain a consistent indoor temperature, reducing the need for excessive heating or cooling.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Reduced Energy Costs:</strong> By keeping your home or building cooler in the summer and warmer in the winter, EIFS lowers your HVAC system\'s workload, leading to significant savings on energy bills.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Moisture Control and Weather Resistance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Florida’s climate is notorious for heavy rains, high humidity, and occasional hurricanes. EIFS offers excellent moisture management, protecting your building from water intrusion and the damage it can cause.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Seamless Barrier:</strong> The weather-resistant layer in EIFS prevents water from penetrating the building’s structure, reducing the risk of mold and rot.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Durable Finishes:</strong> EIFS coatings are designed to withstand wind, rain, and sun, making them ideal for Florida’s challenging weather conditions.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Lightweight and Flexible Design</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Unlike traditional stucco or brick, EIFS is lightweight, which makes it more adaptable to building movements caused by settling or thermal expansion. This flexibility minimizes the risk of cracks, ensuring a long-lasting, energy-efficient exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Enhanced Curb Appeal</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Energy efficiency doesn’t have to come at the expense of aesthetics. EIFS offers a wide range of textures, colors, and finishes, allowing property owners to achieve their desired look without sacrificing performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Customizable Designs:</strong> Whether you prefer a smooth modern finish or a classic textured appearance, EIFS can be tailored to match your style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Boosted Property Value:</strong> The combination of improved energy efficiency and enhanced appearance makes EIFS a valuable investment for your property.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Sustainability and Environmental Benefits</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By reducing energy consumption, EIFS contributes to a smaller carbon footprint. Additionally, many EIFS systems are made from sustainable materials, further enhancing their environmental appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Choose Baseline Stucco for Your EIFS Installation?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we have over 25 years of experience providing high-quality stucco and EIFS solutions for residential and commercial properties. Our certified team is skilled in using leading EIFS systems from STO, Dryvit, Parex, and Decoplast, ensuring every installation meets the highest standards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Expert Installation:</strong> Our team follows meticulous procedures to ensure a flawless application and maximum energy efficiency.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Customized Solutions:</strong> We work with you to design an EIFS system that fits your property’s unique needs and style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Warranties for Peace of Mind:</strong> With manufacturer and workmanship warranties, you can trust that your investment is protected.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Transform Your Property with Energy-Efficient EIFS</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re building new or upgrading an existing property, EIFS is a smart choice for energy efficiency, durability, and aesthetic appeal. Contact Baseline Stucco today for a free estimate and learn how we can help you save on energy costs while enhancing your property’s look and value.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','The Energy Efficiency Benefits of EIFS for Florida Homes and Businesses','','inherit','closed','closed','','359-revision-v1','','','2024-11-25 22:29:03','2024-11-25 22:29:03','',359,'https://dev.baselinestucco.com/?p=361',0,'revision','',0),
(362,1,'2024-11-25 22:29:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-11-25 22:29:12','0000-00-00 00:00:00','',0,'https://dev.baselinestucco.com/?p=362',0,'post','',0),
(363,1,'2024-11-25 22:46:48','2024-11-25 22:46:48','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Hero Baseline','','tco-data','closed','closed','','hero-baseline','','','2024-11-25 22:46:48','2024-11-25 22:46:48','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=363',0,'cs_template','',0),
(364,1,'2024-11-25 22:50:00','2024-11-25 22:50:00','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_button _id=\"11\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"12\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"28\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"29\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"34\" ][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][cs_element_gap _id=\"37\" ][/cs_element_column][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"44\" ][cs_element_row _id=\"45\" ][cs_element_column _id=\"46\" ][cs_element_button _id=\"47\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"52\" ][cs_element_text _id=\"53\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"62\" ][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 22:50:00','2024-11-25 22:50:00','',2,'https://dev.baselinestucco.com/?p=364',0,'revision','',0),
(365,1,'2024-11-25 22:57:43','2024-11-25 22:57:43',' ','','','publish','closed','closed','','365','','','2024-11-25 22:57:43','2024-11-25 22:57:43','',0,'https://dev.baselinestucco.com/?p=365',3,'nav_menu_item','',0),
(366,1,'2024-11-25 23:10:03','2024-11-25 23:10:03','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_button _id=\"11\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"12\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"28\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"29\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"34\" ][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][cs_element_gap _id=\"37\" ][/cs_element_column][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"44\" ][cs_element_row _id=\"45\" ][cs_element_column _id=\"46\" ][cs_element_button _id=\"47\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"52\" ][cs_element_text _id=\"53\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"62\" ][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_layout_row _id=\"97\" ][cs_element_layout_column _id=\"98\" ][cs_element_button _id=\"99\" ][cs_element_button _id=\"100\" ][cs_content_seo]LTL services\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"101\" ][cs_element_button _id=\"102\" ][cs_element_button _id=\"103\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"104\" ][cs_element_container _id=\"105\" ][cs_element_headline _id=\"106\" ][cs_content_seo]BreakingBarriers in Shipping\\n\\n[/cs_content_seo][/cs_element_container][/cs_element_bar][cs_element_section _id=\"107\" ][cs_element_layout_div _id=\"108\" ][cs_element_headline _id=\"109\" ][cs_content_seo]Let\'s talk Logistics\\n\\nQuick caption here\\n\\n[/cs_content_seo][cs_element_text _id=\"110\" ][cs_content_seo]For fast, reliable delivery to your home or business, choose McLeod Expedite. We understand the critical importance of timely deliveries and are committed to ensuring your shipments arrive on schedule. As a trusted Omaha, NE delivery service, we offer a range of services, including on-demand, scheduled, air freight, and truckload options. Contact us today to learn how we can support your shipping needs.\\n\\n[/cs_content_seo][cs_element_button _id=\"111\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][cs_element_layout_row _id=\"112\" ][cs_element_layout_column _id=\"113\" ][cs_element_layout_div_2 _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"116\" ][cs_element_text _id=\"117\" ][cs_content_seo]Local Courier Services\\n\\n[/cs_content_seo][cs_element_line _id=\"118\" ][cs_element_headline _id=\"119\" ][cs_content_seo]On-Demand Deliveries: Fast, same-day delivery whenever you need it.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"120\" ][cs_content_seo]Scheduled Services: Regularly scheduled pickups and deliveries to fit your timetable.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"121\" ][cs_content_seo]Medical Samples: Secure, fast delivery of medical specimens and lab samples.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"122\" ][cs_content_seo]Organ Delivery: Safe and rapid transport of organs for transplants.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"123\" ][cs_content_seo]Hospitals, Labs, Doctor Offices: Reliable courier services tailored to the medical field, ensuring timely deliveries to healthcare facilities.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"124\" ][cs_content_seo]STAT Deliveries: Immediate, priority deliveries for time-sensitive needs.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_button _id=\"125\" ][cs_content_seo]On Demand Deliveries\\n\\n[/cs_content_seo][cs_element_button _id=\"126\" ][cs_content_seo]Medical &amp; Stat Deliveries\\n\\n[/cs_content_seo][cs_element_button _id=\"127\" ][cs_content_seo]Scheduled Services\\n\\n[/cs_content_seo][cs_element_button _id=\"128\" ][cs_content_seo]Truckload Delivery\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][cs_element_layout_column _id=\"129\" ][cs_element_layout_div_2 _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"132\" ][cs_element_text _id=\"133\" ][cs_content_seo]Expedited Services\\n\\n[/cs_content_seo][cs_element_line _id=\"134\" ][cs_element_headline _id=\"135\" ][cs_content_seo]Expedited LTL Service: When you needed it yesterday, we have your back! Less-Than-Truckload shipping for smaller shipments. From one letter to a pallet we do it all!\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"136\" ][cs_content_seo]Critical Medical Delivery Services: Urgent transport for essential medical items.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"137\" ][cs_content_seo]Seamless Business-to-Business Deliveries: Efficient and timely delivery solutions for B2B needs, ensuring smooth operations between businesses.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"138\" ][cs_content_seo]Truckload Services: Full truckload options for larger, bulk deliveries.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"139\" ][cs_content_seo]Delivery Vehicles Available: Flat Bed Truck, Sprinter Van, Straight Truck &amp; 53\" Tractor Trailers&nbsp;\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_button _id=\"140\" ][cs_content_seo]LTL Services\\n\\n[/cs_content_seo][cs_element_button _id=\"141\" ][cs_content_seo]Business to Business\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_layout_div][cs_element_layout_row _id=\"142\" ][cs_element_layout_column _id=\"143\" ][cs_element_button _id=\"144\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:10:03','2024-11-25 23:10:03','',2,'https://dev.baselinestucco.com/?p=366',0,'revision','',0),
(367,1,'2024-11-25 23:12:24','2024-11-25 23:12:24','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_button _id=\"11\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"12\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"28\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"29\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"34\" ][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][cs_element_gap _id=\"37\" ][/cs_element_column][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"44\" ][cs_element_row _id=\"45\" ][cs_element_column _id=\"46\" ][cs_element_button _id=\"47\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"52\" ][cs_element_text _id=\"53\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"62\" ][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_layout_row _id=\"97\" ][cs_element_layout_column _id=\"98\" ][cs_element_button _id=\"99\" ][cs_element_button _id=\"100\" ][cs_content_seo]Commercial\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"101\" ][cs_element_button _id=\"102\" ][cs_element_button _id=\"103\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"104\" ][cs_element_container _id=\"105\" ][cs_element_headline _id=\"106\" ][cs_content_seo]BreakingBarriers in Shipping\\n\\n[/cs_content_seo][/cs_element_container][/cs_element_bar][cs_element_section _id=\"107\" ][cs_element_layout_div _id=\"108\" ][cs_element_headline _id=\"109\" ][cs_content_seo]Let\'s talk Logistics\\n\\nQuick caption here\\n\\n[/cs_content_seo][cs_element_text _id=\"110\" ][cs_content_seo]For fast, reliable delivery to your home or business, choose McLeod Expedite. We understand the critical importance of timely deliveries and are committed to ensuring your shipments arrive on schedule. As a trusted Omaha, NE delivery service, we offer a range of services, including on-demand, scheduled, air freight, and truckload options. Contact us today to learn how we can support your shipping needs.\\n\\n[/cs_content_seo][cs_element_button _id=\"111\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][cs_element_layout_row _id=\"112\" ][cs_element_layout_column _id=\"113\" ][cs_element_layout_div_2 _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"116\" ][cs_element_text _id=\"117\" ][cs_content_seo]Local Courier Services\\n\\n[/cs_content_seo][cs_element_line _id=\"118\" ][cs_element_headline _id=\"119\" ][cs_content_seo]On-Demand Deliveries: Fast, same-day delivery whenever you need it.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"120\" ][cs_content_seo]Scheduled Services: Regularly scheduled pickups and deliveries to fit your timetable.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"121\" ][cs_content_seo]Medical Samples: Secure, fast delivery of medical specimens and lab samples.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"122\" ][cs_content_seo]Organ Delivery: Safe and rapid transport of organs for transplants.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"123\" ][cs_content_seo]Hospitals, Labs, Doctor Offices: Reliable courier services tailored to the medical field, ensuring timely deliveries to healthcare facilities.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"124\" ][cs_content_seo]STAT Deliveries: Immediate, priority deliveries for time-sensitive needs.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_button _id=\"125\" ][cs_content_seo]On Demand Deliveries\\n\\n[/cs_content_seo][cs_element_button _id=\"126\" ][cs_content_seo]Medical &amp; Stat Deliveries\\n\\n[/cs_content_seo][cs_element_button _id=\"127\" ][cs_content_seo]Scheduled Services\\n\\n[/cs_content_seo][cs_element_button _id=\"128\" ][cs_content_seo]Truckload Delivery\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][cs_element_layout_column _id=\"129\" ][cs_element_layout_div_2 _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_div_2][cs_element_layout_div_2 _id=\"132\" ][cs_element_text _id=\"133\" ][cs_content_seo]Expedited Services\\n\\n[/cs_content_seo][cs_element_line _id=\"134\" ][cs_element_headline _id=\"135\" ][cs_content_seo]Expedited LTL Service: When you needed it yesterday, we have your back! Less-Than-Truckload shipping for smaller shipments. From one letter to a pallet we do it all!\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"136\" ][cs_content_seo]Critical Medical Delivery Services: Urgent transport for essential medical items.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"137\" ][cs_content_seo]Seamless Business-to-Business Deliveries: Efficient and timely delivery solutions for B2B needs, ensuring smooth operations between businesses.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"138\" ][cs_content_seo]Truckload Services: Full truckload options for larger, bulk deliveries.\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_headline _id=\"139\" ][cs_content_seo]Delivery Vehicles Available: Flat Bed Truck, Sprinter Van, Straight Truck &amp; 53\" Tractor Trailers&nbsp;\\n\\nThis is a spot where you can elaborate on a particular detail of your product.\\n\\n[/cs_content_seo][cs_element_button _id=\"140\" ][cs_content_seo]LTL Services\\n\\n[/cs_content_seo][cs_element_button _id=\"141\" ][cs_content_seo]Business to Business\\n\\n[/cs_content_seo][/cs_element_layout_div_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_layout_div][cs_element_layout_row _id=\"142\" ][cs_element_layout_column _id=\"143\" ][cs_element_button _id=\"144\" ][cs_content_seo]Get Quote\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:12:24','2024-11-25 23:12:24','',2,'https://dev.baselinestucco.com/?p=367',0,'revision','',0),
(368,1,'2024-11-25 23:16:35','2024-11-25 23:16:35','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_image _id=\"4\" ][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"5\" ][cs_element_container _id=\"6\" ][cs_element_image _id=\"7\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_button _id=\"15\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"16\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"17\" ][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_image _id=\"20\" ][cs_element_gap _id=\"21\" ][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"35\" ][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_image _id=\"37\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_image _id=\"40\" ][cs_element_gap _id=\"41\" ][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_button _id=\"51\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_row _id=\"53\" ][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"56\" ][cs_element_text _id=\"57\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"58\" ][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_gap _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_text _id=\"81\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"82\" ][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_headline _id=\"93\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"95\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_layout_row _id=\"101\" ][cs_element_layout_column _id=\"102\" ][cs_element_button _id=\"103\" ][cs_element_button _id=\"104\" ][cs_content_seo]Commercial\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"105\" ][cs_element_button _id=\"106\" ][cs_element_button _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_headline _id=\"111\" ][cs_content_seo]A plan for everyone.\\n\\nThree simple ways to get started today.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"112\" ][cs_element_column _id=\"113\" ][cs_element_headline _id=\"114\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"117\" ][cs_content_seo]Buy Now\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"118\" ][cs_element_headline _id=\"119\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"120\" ][cs_content_seo]List your features out for each price level here\\n\\n[/cs_content_seo][cs_element_headline _id=\"121\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"122\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_headline _id=\"123\" ][cs_content_seo]You can add as few or as many as you wish\\n\\n[/cs_content_seo][cs_element_button _id=\"124\" ][cs_content_seo]Buy Now\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"125\" ][cs_element_row _id=\"126\" ][cs_element_column _id=\"127\" ][cs_element_headline _id=\"128\" ][cs_content_seo]More inforamtion.\\n\\nAnswers to some frequently asked questions.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"129\" ][cs_element_column _id=\"130\" ][cs_element_accordion _modules=\"132,133,134\" _id=\"131\" ][/cs_element_accordion][cs_element_gap _id=\"135\" ][/cs_element_column][cs_element_column _id=\"136\" ][cs_element_accordion _modules=\"138,139,140\" _id=\"137\" ][/cs_element_accordion][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:16:35','2024-11-25 23:16:35','',2,'https://dev.baselinestucco.com/?p=368',0,'revision','',0),
(369,1,'2024-11-25 23:21:58','2024-11-25 23:21:58','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_image _id=\"4\" ][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"5\" ][cs_element_container _id=\"6\" ][cs_element_image _id=\"7\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_button _id=\"15\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"16\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"17\" ][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_image _id=\"20\" ][cs_element_gap _id=\"21\" ][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"35\" ][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_image _id=\"37\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_image _id=\"40\" ][cs_element_gap _id=\"41\" ][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_button _id=\"51\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_row _id=\"53\" ][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"56\" ][cs_element_text _id=\"57\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"58\" ][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_gap _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_text _id=\"81\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"82\" ][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_headline _id=\"93\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"95\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_layout_row _id=\"101\" ][cs_element_layout_column _id=\"102\" ][cs_element_button _id=\"103\" ][cs_element_button _id=\"104\" ][cs_content_seo]Commercial\\n\\n[/cs_content_seo][/cs_element_layout_column][cs_element_layout_column _id=\"105\" ][cs_element_button _id=\"106\" ][cs_element_button _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_row _id=\"109\" ][cs_element_column _id=\"110\" ][cs_element_headline _id=\"111\" ][cs_content_seo]A plan for everyone.\\n\\nThree simple ways to get started today.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"112\" ][cs_element_column _id=\"113\" ][cs_element_headline _id=\"114\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"118\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"119\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"120\" ][cs_content_seo]View our projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"121\" ][cs_element_headline _id=\"122\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"123\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"124\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"125\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"126\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"127\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"128\" ][cs_content_seo]View our projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_row _id=\"130\" ][cs_element_column _id=\"131\" ][cs_element_headline _id=\"132\" ][cs_content_seo]More inforamtion.\\n\\nAnswers to some frequently asked questions.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"133\" ][cs_element_column _id=\"134\" ][cs_element_accordion _modules=\"136,137,138\" _id=\"135\" ][/cs_element_accordion][cs_element_gap _id=\"139\" ][/cs_element_column][cs_element_column _id=\"140\" ][cs_element_accordion _modules=\"142,143,144\" _id=\"141\" ][/cs_element_accordion][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:21:58','2024-11-25 23:21:58','',2,'https://dev.baselinestucco.com/?p=369',0,'revision','',0),
(370,1,'2024-11-25 23:23:06','2024-11-25 23:23:06','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_image _id=\"4\" ][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"5\" ][cs_element_container _id=\"6\" ][cs_element_image _id=\"7\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_button _id=\"15\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"16\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"17\" ][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_image _id=\"20\" ][cs_element_gap _id=\"21\" ][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"35\" ][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_image _id=\"37\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_image _id=\"40\" ][cs_element_gap _id=\"41\" ][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_button _id=\"51\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_row _id=\"53\" ][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"56\" ][cs_element_text _id=\"57\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"58\" ][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_gap _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_text _id=\"81\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"82\" ][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_headline _id=\"93\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"95\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_headline _id=\"103\" ][cs_content_seo]A plan for everyone.\\n\\nThree simple ways to get started today.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"104\" ][cs_element_column _id=\"105\" ][cs_element_headline _id=\"106\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"108\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"109\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"110\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"111\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"112\" ][cs_content_seo]View our projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"113\" ][cs_element_headline _id=\"114\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"118\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"119\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"120\" ][cs_content_seo]View our projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"121\" ][cs_element_row _id=\"122\" ][cs_element_column _id=\"123\" ][cs_element_headline _id=\"124\" ][cs_content_seo]More inforamtion.\\n\\nAnswers to some frequently asked questions.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"125\" ][cs_element_column _id=\"126\" ][cs_element_accordion _modules=\"128,129,130\" _id=\"127\" ][/cs_element_accordion][cs_element_gap _id=\"131\" ][/cs_element_column][cs_element_column _id=\"132\" ][cs_element_accordion _modules=\"134,135,136\" _id=\"133\" ][/cs_element_accordion][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:23:06','2024-11-25 23:23:06','',2,'https://dev.baselinestucco.com/?p=370',0,'revision','',0),
(371,1,'2024-11-25 23:26:41','2024-11-25 23:26:41','[cs_content _p=\'2\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_image _id=\"4\" ][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_bar _id=\"5\" ][cs_element_container _id=\"6\" ][cs_element_image _id=\"7\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"12\" ][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_button _id=\"15\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"16\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"17\" ][cs_element_row _id=\"18\" ][cs_element_column _id=\"19\" ][cs_element_image _id=\"20\" ][cs_element_gap _id=\"21\" ][/cs_element_column][cs_element_column _id=\"22\" ][cs_element_headline _id=\"23\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"24\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"25\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"26\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"27\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"28\" ][cs_element_column _id=\"29\" ][cs_element_headline _id=\"30\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"31\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"35\" ][/cs_element_column][cs_element_column _id=\"36\" ][cs_element_image _id=\"37\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"38\" ][cs_element_column _id=\"39\" ][cs_element_image _id=\"40\" ][cs_element_gap _id=\"41\" ][/cs_element_column][cs_element_column _id=\"42\" ][cs_element_headline _id=\"43\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"47\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_button _id=\"51\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"52\" ][cs_element_row _id=\"53\" ][cs_element_column _id=\"54\" ][cs_element_headline _id=\"55\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"56\" ][cs_element_text _id=\"57\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"58\" ][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_gap _id=\"61\" ][cs_element_text _id=\"62\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"78\" ][/cs_element_column][cs_element_column _id=\"79\" ][cs_element_image _id=\"80\" ][cs_element_text _id=\"81\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"82\" ][cs_element_row _id=\"83\" ][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"92\" ][cs_element_headline _id=\"93\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"95\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"100\" ][cs_element_row _id=\"101\" ][cs_element_column _id=\"102\" ][cs_element_headline _id=\"103\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"104\" ][cs_element_column _id=\"105\" ][cs_element_headline _id=\"106\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"108\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"109\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"110\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"111\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"112\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"113\" ][cs_element_headline _id=\"114\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"118\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"119\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"120\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-25 23:26:41','2024-11-25 23:26:41','',2,'https://dev.baselinestucco.com/?p=371',0,'revision','',0),
(372,1,'2024-11-25 23:45:02','2024-11-25 23:45:02','','the-mooring-real-estate-logo','','inherit','open','closed','','the-mooring-real-estate-logo','','','2024-11-25 23:45:02','2024-11-25 23:45:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/the-mooring-real-estate-logo.jpg',0,'attachment','image/jpeg',0),
(373,1,'2024-11-25 23:45:02','2024-11-25 23:45:02','','Erika-Ross-800-x-200-px-4','','inherit','open','closed','','erika-ross-800-x-200-px-4','','','2024-11-25 23:45:02','2024-11-25 23:45:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Erika-Ross-800-x-200-px-4.png',0,'attachment','image/png',0),
(374,1,'2024-11-25 23:45:02','2024-11-25 23:45:02','','Erika-Ross-Website-Header-image_White800-x-200-px','','inherit','open','closed','','erika-ross-website-header-image_white800-x-200-px','','','2024-11-25 23:45:02','2024-11-25 23:45:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/Erika-Ross-Website-Header-image_White800-x-200-px.png',0,'attachment','image/png',0),
(375,1,'2024-11-25 23:45:04','2024-11-25 23:45:04','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Contact page','','tco-data','closed','closed','','contact-page','','','2024-11-25 23:45:04','2024-11-25 23:45:04','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=375',0,'cs_template','',0),
(376,1,'2024-11-25 23:47:59','2024-11-25 23:47:59','[cs_content _p=\'49\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Send Us a Message!\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Questions? Comments? Or suggestions? Feel free to send us a message!\\n\\n[/cs_content_seo][cs_element_form_integration _id=\"6\" ][/cs_element_layout_column][cs_element_layout_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Contact Information\\n\\n[/cs_content_seo][cs_element_image _id=\"9\" ][cs_element_gap _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]Vero Beach, FL 32966\\n\\n[/cs_content_seo][cs_element_gap _id=\"12\" ][cs_element_headline _id=\"13\" ][cs_content_seo](914) 382-1493\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]erika@erikalross.com\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"16\" ][cs_element_layout_row_2 _id=\"17\" ][cs_element_layout_column_2 _id=\"18\" ][cs_element_map _id=\"19\" ][/cs_element_map][/cs_element_layout_column_2][/cs_element_layout_row_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Contact','','inherit','closed','closed','','49-revision-v1','','','2024-11-25 23:47:59','2024-11-25 23:47:59','',49,'https://dev.baselinestucco.com/?p=376',0,'revision','',0),
(377,1,'2024-11-25 23:50:27','2024-11-25 23:50:27','[cs_content _p=\'49\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Send Us a Message!\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Questions? Comments? Or suggestions? Feel free to send us a message!\\n\\n[/cs_content_seo][cs_element_form_integration _id=\"6\" ][/cs_element_layout_column][cs_element_layout_column _id=\"7\" ][cs_element_image _id=\"8\" ][cs_element_gap _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Vero Beach, FL 32966\\n\\n[/cs_content_seo][cs_element_gap _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo](914) 382-1493\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"13\" ][cs_element_headline _id=\"14\" ][cs_content_seo]erika@erikalross.com\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"15\" ][cs_element_layout_row_2 _id=\"16\" ][cs_element_layout_column_2 _id=\"17\" ][cs_element_map _id=\"18\" ][/cs_element_map][/cs_element_layout_column_2][/cs_element_layout_row_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Contact','','inherit','closed','closed','','49-revision-v1','','','2024-11-25 23:50:27','2024-11-25 23:50:27','',49,'https://dev.baselinestucco.com/?p=377',0,'revision','',0),
(378,1,'2024-11-25 23:52:00','2024-11-25 23:52:00','[cs_content _p=\'49\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Send Us a Message!\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Questions? Comments? Or suggestions? Feel free to send us a message!\\n\\n[/cs_content_seo][cs_element_form_integration _id=\"6\" ][/cs_element_layout_column][cs_element_layout_column _id=\"7\" ][cs_element_image _id=\"8\" ][cs_element_gap _id=\"9\" ][cs_element_headline _id=\"10\" ][cs_content_seo]Vero Beach, FL 32966\\n\\n[/cs_content_seo][cs_element_gap _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo](914) 382-1493\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"13\" ][cs_element_headline _id=\"14\" ][cs_content_seo]baselineconstruction@zoho.com\\n\\n11111111\\n\\n[/cs_content_seo][cs_element_gap _id=\"15\" ][cs_element_layout_row_2 _id=\"16\" ][cs_element_layout_column_2 _id=\"17\" ][cs_element_map _id=\"18\" ][/cs_element_map][/cs_element_layout_column_2][/cs_element_layout_row_2][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Contact','','inherit','closed','closed','','49-revision-v1','','','2024-11-25 23:52:00','2024-11-25 23:52:00','',49,'https://dev.baselinestucco.com/?p=378',0,'revision','',0),
(379,1,'2024-11-26 00:03:25','2024-11-26 00:03:25','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"8\" ][cs_element_row _id=\"9\" ][cs_element_column _id=\"10\" ][cs_element_button _id=\"11\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"12\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"28\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"29\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"34\" ][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][cs_element_gap _id=\"37\" ][/cs_element_column][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"44\" ][cs_element_row _id=\"45\" ][cs_element_column _id=\"46\" ][cs_element_button _id=\"47\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"52\" ][cs_element_text _id=\"53\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"62\" ][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"100\" ][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"103\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"104\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"105\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"106\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"108\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_headline _id=\"110\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"111\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"112\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"113\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"114\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"116\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-26 00:03:25','2024-11-26 00:03:25','',2,'https://dev.baselinestucco.com/?p=379',0,'revision','',0),
(380,1,'2024-11-25 19:06:48','2024-11-25 19:06:48','[cs_content _p=\'380\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Our Core Values\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Crafting Strength and Beauty, One Project at a Time\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Quality Craftsmanship\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.\\n\\n[/cs_content_seo][cs_element_gap _id=\"10\" ][/cs_element_column][cs_element_column _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo]Customer Focus\\n\\n[/cs_content_seo][cs_element_text _id=\"13\" ][cs_content_seo]Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.\\n\\n[/cs_content_seo][cs_element_gap _id=\"14\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"15\" ][cs_element_column _id=\"16\" ][cs_element_headline _id=\"17\" ][cs_content_seo]Integrity\\n\\n[/cs_content_seo][cs_element_text _id=\"18\" ][cs_content_seo]Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.\\n\\n[/cs_content_seo][cs_element_gap _id=\"19\" ][/cs_element_column][cs_element_column _id=\"20\" ][cs_element_headline _id=\"21\" ][cs_content_seo]Innovation\\n\\n[/cs_content_seo][cs_element_text _id=\"22\" ][cs_content_seo]We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.\\n\\n[/cs_content_seo][cs_element_gap _id=\"23\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','About','','publish','closed','closed','','about','','','2024-11-26 17:14:40','2024-11-26 17:14:40','',0,'https://dev.baselinestucco.com/?page_id=380',0,'page','',0),
(381,1,'2024-11-26 00:04:43','2024-11-26 00:04:43','[cs_content _p=\'380\'][/cs_content]','Untitled Page','','inherit','closed','closed','','380-revision-v1','','','2024-11-26 00:04:43','2024-11-26 00:04:43','',380,'https://dev.baselinestucco.com/?p=381',0,'revision','',0),
(382,1,'2024-11-26 00:04:48','2024-11-26 00:04:48','[cs_content _p=\'380\'][/cs_content]','About','','inherit','closed','closed','','380-revision-v1','','','2024-11-26 00:04:48','2024-11-26 00:04:48','',380,'https://dev.baselinestucco.com/?p=382',0,'revision','',0),
(383,1,'2024-11-26 00:10:30','2024-11-26 00:05:28',' ','','','publish','closed','closed','','383','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/2024/11/26/383/',6,'nav_menu_item','',0),
(384,1,'2024-11-26 00:09:40','2024-11-26 00:09:36',' ','','','publish','closed','closed','','384','','','2024-11-26 00:09:40','2024-11-26 00:09:40','',0,'https://dev.baselinestucco.com/?p=384',2,'nav_menu_item','',0),
(385,1,'2024-11-26 00:10:30','2024-11-26 00:10:30',' ','','','publish','closed','closed','','385','','','2024-11-26 00:10:30','2024-11-26 00:10:30','',0,'https://dev.baselinestucco.com/?p=385',2,'nav_menu_item','',0),
(386,1,'2024-11-26 00:20:40','2024-11-26 00:20:40','[cs_content _p=\'380\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Our Core Values\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]Quality Craftsmanship\\n\\n[/cs_content_seo][cs_element_text _id=\"8\" ][cs_content_seo]We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.\\n\\n[/cs_content_seo][cs_element_gap _id=\"9\" ][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_headline _id=\"11\" ][cs_content_seo]Customer Focus\\n\\n[/cs_content_seo][cs_element_text _id=\"12\" ][cs_content_seo]Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_headline _id=\"15\" ][cs_content_seo]Integrity\\n\\n[/cs_content_seo][cs_element_text _id=\"16\" ][cs_content_seo]Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.\\n\\n[/cs_content_seo][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Innovation\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','About','','inherit','closed','closed','','380-revision-v1','','','2024-11-26 00:20:40','2024-11-26 00:20:40','',380,'https://dev.baselinestucco.com/?p=386',0,'revision','',0),
(387,1,'2024-11-26 00:21:53','2024-11-26 00:21:53','[cs_content _p=\'380\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Our Core Values\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Crafting Strength and Beauty, One Project at a Time\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Quality Craftsmanship\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.\\n\\n[/cs_content_seo][cs_element_gap _id=\"10\" ][/cs_element_column][cs_element_column _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo]Customer Focus\\n\\n[/cs_content_seo][cs_element_text _id=\"13\" ][cs_content_seo]Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_headline _id=\"16\" ][cs_content_seo]Integrity\\n\\n[/cs_content_seo][cs_element_text _id=\"17\" ][cs_content_seo]Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.\\n\\n[/cs_content_seo][cs_element_gap _id=\"18\" ][/cs_element_column][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]Innovation\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','About','','inherit','closed','closed','','380-revision-v1','','','2024-11-26 00:21:53','2024-11-26 00:21:53','',380,'https://dev.baselinestucco.com/?p=387',0,'revision','',0),
(388,1,'2024-11-26 16:18:28','2024-11-26 16:18:28','http://dev.baselinestucco.com/wp-content/uploads/2024/11/cropped-Baseline-Construction-200-x-200-px.png','cropped-Baseline-Construction-200-x-200-px.png','','inherit','open','closed','','cropped-baseline-construction-200-x-200-px-png','','','2024-11-26 16:18:28','2024-11-26 16:18:28','',143,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/cropped-Baseline-Construction-200-x-200-px.png',0,'attachment','image/png',0),
(389,1,'2024-11-26 16:18:34','2024-11-26 16:18:34','{\n    \"blogdescription\": {\n        \"value\": \"Strength in every texture, pride in every detail\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-11-26 16:18:34\"\n    },\n    \"site_icon\": {\n        \"value\": 388,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2024-11-26 16:18:34\"\n    }\n}','','','trash','closed','closed','','3cbb8654-d349-4544-922e-13c9481b8aa1','','','2024-11-26 16:18:34','2024-11-26 16:18:34','',0,'https://dev.baselinestucco.com/2024/11/26/3cbb8654-d349-4544-922e-13c9481b8aa1/',0,'customize_changeset','',0),
(390,2,'2024-11-26 16:46:45','2024-11-26 16:46:45','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][cs_element_headline _id=\"8\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"9\" ][cs_element_row _id=\"10\" ][cs_element_column _id=\"11\" ][cs_element_button _id=\"12\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_headline _id=\"26\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"27\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"28\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"29\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"31\" ][/cs_element_column][cs_element_column _id=\"32\" ][cs_element_image _id=\"33\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"34\" ][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][cs_element_gap _id=\"37\" ][/cs_element_column][cs_element_column _id=\"38\" ][cs_element_headline _id=\"39\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"40\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"41\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"42\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"44\" ][cs_element_row _id=\"45\" ][cs_element_column _id=\"46\" ][cs_element_button _id=\"47\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"48\" ][cs_element_row _id=\"49\" ][cs_element_column _id=\"50\" ][cs_element_headline _id=\"51\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"52\" ][cs_element_text _id=\"53\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"54\" ][cs_element_column _id=\"55\" ][cs_element_image _id=\"56\" ][cs_element_gap _id=\"57\" ][cs_element_text _id=\"58\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"59\" ][cs_element_image _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"62\" ][/cs_element_column][cs_element_column _id=\"63\" ][cs_element_image _id=\"64\" ][cs_element_text _id=\"65\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"66\" ][/cs_element_column][cs_element_column _id=\"67\" ][cs_element_image _id=\"68\" ][cs_element_text _id=\"69\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"70\" ][/cs_element_column][cs_element_column _id=\"71\" ][cs_element_image _id=\"72\" ][cs_element_text _id=\"73\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"74\" ][/cs_element_column][cs_element_column _id=\"75\" ][cs_element_image _id=\"76\" ][cs_element_text _id=\"77\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"78\" ][cs_element_row _id=\"79\" ][cs_element_column _id=\"80\" ][cs_element_headline _id=\"81\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"82\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"83\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"84\" ][cs_element_headline _id=\"85\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"87\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"88\" ][cs_element_headline _id=\"89\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"91\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"92\" ][cs_element_row _id=\"93\" ][cs_element_column _id=\"94\" ][cs_element_headline _id=\"95\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"96\" ][cs_element_row _id=\"97\" ][cs_element_column _id=\"98\" ][cs_element_headline _id=\"99\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"100\" ][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"103\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"104\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"105\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"106\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"108\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"109\" ][cs_element_headline _id=\"110\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"111\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"112\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"113\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"114\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"116\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-26 16:46:45','2024-11-26 16:46:45','',2,'https://dev.baselinestucco.com/?p=390',0,'revision','',0),
(391,2,'2024-11-26 16:54:37','2024-11-26 16:54:37','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][cs_element_headline _id=\"8\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"9\" ][cs_element_row _id=\"10\" ][cs_element_column _id=\"11\" ][cs_element_button _id=\"12\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"13\" ][cs_element_row _id=\"14\" ][cs_element_column _id=\"15\" ][cs_element_image _id=\"16\" ][cs_element_gap _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_headline _id=\"19\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"20\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"21\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"24\" ][cs_element_column _id=\"25\" ][cs_element_image _id=\"26\" ][cs_element_gap _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"30\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"31\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"33\" ][/cs_element_column][cs_element_column _id=\"34\" ][cs_element_image _id=\"35\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"36\" ][cs_element_column _id=\"37\" ][cs_element_image _id=\"38\" ][cs_element_gap _id=\"39\" ][/cs_element_column][cs_element_column _id=\"40\" ][cs_element_headline _id=\"41\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"42\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"43\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"46\" ][cs_element_row _id=\"47\" ][cs_element_column _id=\"48\" ][cs_element_button _id=\"49\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"50\" ][cs_element_row _id=\"51\" ][cs_element_column _id=\"52\" ][cs_element_headline _id=\"53\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"54\" ][cs_element_text _id=\"55\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"56\" ][cs_element_column _id=\"57\" ][cs_element_image _id=\"58\" ][cs_element_gap _id=\"59\" ][cs_element_text _id=\"60\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"61\" ][cs_element_image _id=\"62\" ][cs_element_text _id=\"63\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"64\" ][/cs_element_column][cs_element_column _id=\"65\" ][cs_element_image _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"68\" ][/cs_element_column][cs_element_column _id=\"69\" ][cs_element_image _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"72\" ][/cs_element_column][cs_element_column _id=\"73\" ][cs_element_image _id=\"74\" ][cs_element_text _id=\"75\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"76\" ][/cs_element_column][cs_element_column _id=\"77\" ][cs_element_image _id=\"78\" ][cs_element_text _id=\"79\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"80\" ][cs_element_row _id=\"81\" ][cs_element_column _id=\"82\" ][cs_element_headline _id=\"83\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"84\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"85\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"86\" ][cs_element_headline _id=\"87\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"88\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"89\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"90\" ][cs_element_headline _id=\"91\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"92\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"93\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"94\" ][cs_element_row _id=\"95\" ][cs_element_column _id=\"96\" ][cs_element_headline _id=\"97\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"98\" ][cs_element_row _id=\"99\" ][cs_element_column _id=\"100\" ][cs_element_headline _id=\"101\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"102\" ][cs_element_column _id=\"103\" ][cs_element_headline _id=\"104\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"105\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"106\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"108\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"109\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"110\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"111\" ][cs_element_headline _id=\"112\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"113\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"114\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"118\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-26 16:54:37','2024-11-26 16:54:37','',2,'https://dev.baselinestucco.com/?p=391',0,'revision','',0),
(392,2,'2024-11-26 17:04:49','2024-11-26 17:04:49','[cs_content _p=\'49\'][cs_element_section _id=\"1\" ][cs_element_layout_row _id=\"2\" ][cs_element_layout_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Send Us a Message!\\n\\n[/cs_content_seo][cs_element_text _id=\"5\" ][cs_content_seo]Questions? Comments? Or suggestions? Feel free to send us a message!\\n\\n[/cs_content_seo][cs_element_form_integration _id=\"6\" ][/cs_element_layout_column][cs_element_layout_column _id=\"7\" ][cs_element_map _id=\"8\" ][/cs_element_map][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][/cs_content]','Contact','','inherit','closed','closed','','49-revision-v1','','','2024-11-26 17:04:49','2024-11-26 17:04:49','',49,'https://dev.baselinestucco.com/?p=392',0,'revision','',0),
(393,2,'2024-11-26 17:10:27','2024-11-26 17:10:27','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][cs_element_text _id=\"12\" ][cs_content_seo]Our Commercial Stucco Services Include:\n\nStucco application for new commercial construction projects.\nRenovations and updates to existing stucco exteriors.\nEIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.\nCrack repair and restoration to maintain a professional appearance.\nCustom texturing and design to align with your company&rsquo;s branding.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_row _id=\"169\" ][cs_element_column _id=\"170\" ][cs_element_button _id=\"171\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-26 17:10:27','2024-11-26 17:10:27','',316,'https://dev.baselinestucco.com/?p=393',0,'revision','',0),
(394,2,'2024-11-26 17:14:40','2024-11-26 17:14:40','[cs_content _p=\'380\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Our Core Values\\n\\n[/cs_content_seo][cs_element_headline _id=\"5\" ][cs_content_seo]Crafting Strength and Beauty, One Project at a Time\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Quality Craftsmanship\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]We hold ourselves to the highest standards of workmanship, ensuring that every project is executed with precision and care. From the materials we use to the techniques we apply, quality is at the heart of everything we do.\\n\\n[/cs_content_seo][cs_element_gap _id=\"10\" ][/cs_element_column][cs_element_column _id=\"11\" ][cs_element_headline _id=\"12\" ][cs_content_seo]Customer Focus\\n\\n[/cs_content_seo][cs_element_text _id=\"13\" ][cs_content_seo]Your vision is our priority. We listen carefully to your needs and work collaboratively to create customized solutions that align with your goals, style, and budget.\\n\\n[/cs_content_seo][cs_element_gap _id=\"14\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"15\" ][cs_element_column _id=\"16\" ][cs_element_headline _id=\"17\" ][cs_content_seo]Integrity\\n\\n[/cs_content_seo][cs_element_text _id=\"18\" ][cs_content_seo]Honesty and transparency guide our interactions with clients. From the initial consultation to project completion, we ensure clear communication and dependable service every step of the way.\\n\\n[/cs_content_seo][cs_element_gap _id=\"19\" ][/cs_element_column][cs_element_column _id=\"20\" ][cs_element_headline _id=\"21\" ][cs_content_seo]Innovation\\n\\n[/cs_content_seo][cs_element_text _id=\"22\" ][cs_content_seo]We stay ahead of industry trends and technologies, incorporating modern systems like EIFS to provide energy-efficient, sustainable, and cutting-edge finishes.\\n\\n[/cs_content_seo][cs_element_gap _id=\"23\" ][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','About','','inherit','closed','closed','','380-revision-v1','','','2024-11-26 17:14:40','2024-11-26 17:14:40','',380,'https://dev.baselinestucco.com/?p=394',0,'revision','',0),
(395,1,'2024-11-26 20:37:58','2024-11-26 20:37:58','{\"identifier\":\"element|__multi__\",\"preview\":\"\"}','Lagrange photo gallery','','tco-data','closed','closed','','lagrange-photo-gallery','','','2024-11-26 20:37:58','2024-11-26 20:37:58','',0,'https://dev.baselinestucco.com/?post_type=cs_template&p=395',0,'cs_template','',0),
(396,1,'2024-11-26 20:38:48','2024-11-26 20:38:48','[cs_content _p=\'316\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Commercial Stucco: Elevate Your Business with Durable and Professional Finishes\\n\\nAt Baseline Stucco, we understand that first impressions matter&mdash;especially for your business. Our commercial stucco services are designed to deliver high-quality, durable finishes that enhance the appearance and functionality of your property. Whether you&rsquo;re constructing a new building or renovating an existing one, we provide customized solutions tailored to meet the unique demands of your commercial project.Stucco offers a versatile, energy-efficient, and low-maintenance option for commercial exteriors. Our certified team uses top-tier materials and proven techniques to ensure a flawless application that withstands Florida&rsquo;s weather while maintaining its professional appeal for years to come.\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"9\" ][cs_element_image _id=\"10\" ][cs_element_text _id=\"11\" ][cs_content_seo]Why Choose Baseline Stucco for Your Commercial Project?\n\n 	Professional Appearance: Create an inviting, polished look for your business.\n 	Durability: Long-lasting finishes that resist cracking, fading, and weather damage.\n 	Energy Efficiency: Enhance insulation to reduce heating and cooling costs.\n 	Low Maintenance: Save time and money with a hassle-free exterior solution.\n 	Customizable Design: Wide range of colors, textures, and finishes to match your brand.\n\\n\\n[/cs_content_seo][cs_element_text _id=\"12\" ][cs_content_seo]Our Commercial Stucco Services Include:\n\nStucco application for new commercial construction projects.\nRenovations and updates to existing stucco exteriors.\nEIFS (Exterior Insulation Finish System) installation for enhanced energy efficiency.\nCrack repair and restoration to maintain a professional appearance.\nCustom texturing and design to align with your company&rsquo;s branding.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_row _id=\"40\" ][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"44\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"45\" ][cs_element_headline _id=\"46\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"47\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"48\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"49\" ][cs_element_headline _id=\"50\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"51\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"52\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"53\" ][cs_element_layout_row _id=\"54\" ][cs_element_layout_column _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"57\" ][cs_element_layout_div _id=\"58\" ][cs_element_layout_grid _id=\"59\" ][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"64\" ][cs_element_image _id=\"65\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"66\" ][cs_element_image _id=\"67\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_row _id=\"69\" ][cs_element_layout_column _id=\"70\" ][cs_element_text _id=\"71\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"72\" ][cs_element_layout_div _id=\"73\" ][cs_element_layout_grid _id=\"74\" ][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"79\" ][cs_element_image _id=\"80\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"81\" ][cs_element_image _id=\"82\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"83\" ][cs_element_layout_grid _id=\"84\" ][cs_element_layout_cell _id=\"85\" ][cs_element_image _id=\"86\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"87\" ][cs_element_image _id=\"88\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"89\" ][cs_element_image _id=\"90\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"91\" ][cs_element_image _id=\"92\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"93\" ][cs_element_layout_row _id=\"94\" ][cs_element_layout_column _id=\"95\" ][cs_element_text _id=\"96\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"97\" ][cs_element_layout_div _id=\"98\" ][cs_element_layout_grid _id=\"99\" ][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"104\" ][cs_element_image _id=\"105\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"106\" ][cs_element_image _id=\"107\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"108\" ][cs_element_layout_grid _id=\"109\" ][cs_element_layout_cell _id=\"110\" ][cs_element_image _id=\"111\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"112\" ][cs_element_image _id=\"113\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"114\" ][cs_element_image _id=\"115\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"116\" ][cs_element_image _id=\"117\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"118\" ][cs_element_layout_row _id=\"119\" ][cs_element_layout_column _id=\"120\" ][cs_element_text _id=\"121\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"122\" ][cs_element_layout_div _id=\"123\" ][cs_element_layout_grid _id=\"124\" ][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"129\" ][cs_element_image _id=\"130\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"131\" ][cs_element_image _id=\"132\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_row _id=\"134\" ][cs_element_layout_column _id=\"135\" ][cs_element_text _id=\"136\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"137\" ][cs_element_layout_div _id=\"138\" ][cs_element_layout_grid _id=\"139\" ][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"144\" ][cs_element_image _id=\"145\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"146\" ][cs_element_image _id=\"147\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"148\" ][cs_element_layout_grid _id=\"149\" ][cs_element_layout_cell _id=\"150\" ][cs_element_image _id=\"151\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"152\" ][cs_element_image _id=\"153\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"154\" ][cs_element_image _id=\"155\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"156\" ][cs_element_image _id=\"157\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"158\" ][cs_element_layout_grid _id=\"159\" ][cs_element_layout_cell _id=\"160\" ][cs_element_image _id=\"161\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"162\" ][cs_element_image _id=\"163\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"164\" ][cs_element_image _id=\"165\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"166\" ][cs_element_image _id=\"167\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"168\" ][cs_element_layout_row _id=\"169\" ][cs_element_layout_column _id=\"170\" ][cs_element_text _id=\"171\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"172\" ][cs_element_layout_div _id=\"173\" ][cs_element_layout_grid _id=\"174\" ][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"179\" ][cs_element_image _id=\"180\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"181\" ][cs_element_image _id=\"182\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"183\" ][cs_element_layout_grid _id=\"184\" ][cs_element_layout_cell _id=\"185\" ][cs_element_image _id=\"186\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"187\" ][cs_element_image _id=\"188\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"189\" ][cs_element_image _id=\"190\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"191\" ][cs_element_image _id=\"192\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"193\" ][cs_element_row _id=\"194\" ][cs_element_column _id=\"195\" ][cs_element_button _id=\"196\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Commercial','','inherit','closed','closed','','316-revision-v1','','','2024-11-26 20:38:48','2024-11-26 20:38:48','',316,'https://dev.baselinestucco.com/?p=396',0,'revision','',0),
(397,1,'2024-11-26 20:39:40','2024-11-26 20:39:40','','baselineconstruction','','inherit','open','closed','','baselineconstruction','','','2024-11-26 20:39:40','2024-11-26 20:39:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/baselineconstruction.zip',0,'attachment','application/zip',0),
(398,1,'2024-11-26 20:40:09','2024-11-26 20:40:09','','IMG_1076','','inherit','open','closed','','img_1076','','','2024-11-26 20:40:09','2024-11-26 20:40:09','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1076.jpg',0,'attachment','image/jpeg',0),
(399,1,'2024-11-26 20:40:16','2024-11-26 20:40:16','','IMG_1071','','inherit','open','closed','','img_1071','','','2024-11-26 20:40:16','2024-11-26 20:40:16','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1071.jpg',0,'attachment','image/jpeg',0),
(400,1,'2024-11-26 20:40:24','2024-11-26 20:40:24','','IMG_1106','','inherit','open','closed','','img_1106','','','2024-11-26 20:40:24','2024-11-26 20:40:24','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1106.jpg',0,'attachment','image/jpeg',0),
(401,1,'2024-11-26 20:40:33','2024-11-26 20:40:33','','IMG_1107','','inherit','open','closed','','img_1107','','','2024-11-26 20:40:33','2024-11-26 20:40:33','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1107.jpg',0,'attachment','image/jpeg',0),
(402,1,'2024-11-26 20:40:40','2024-11-26 20:40:40','','IMG_1074','','inherit','open','closed','','img_1074','','','2024-11-26 20:40:40','2024-11-26 20:40:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1074.jpg',0,'attachment','image/jpeg',0),
(403,1,'2024-11-26 20:40:46','2024-11-26 20:40:46','','IMG_1070','','inherit','open','closed','','img_1070','','','2024-11-26 20:40:46','2024-11-26 20:40:46','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1070.jpg',0,'attachment','image/jpeg',0),
(404,1,'2024-11-26 20:47:55','2024-11-26 20:47:55','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_row _id=\"65\" ][cs_element_column _id=\"66\" ][cs_element_button _id=\"67\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-26 20:47:55','2024-11-26 20:47:55','',320,'https://dev.baselinestucco.com/?p=404',0,'revision','',0),
(405,1,'2024-11-26 20:49:55','2024-11-26 20:49:55','','E4DB0D13-22B7-4FA5-B49E-D341910DA8E3','','inherit','open','closed','','e4db0d13-22b7-4fa5-b49e-d341910da8e3','','','2024-11-26 20:49:55','2024-11-26 20:49:55','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/E4DB0D13-22B7-4FA5-B49E-D341910DA8E3.jpg',0,'attachment','image/jpeg',0),
(406,1,'2024-11-26 20:49:57','2024-11-26 20:49:57','','C44CAEB1-7921-46CF-AF1A-D361F7583648','','inherit','open','closed','','c44caeb1-7921-46cf-af1a-d361f7583648','','','2024-11-26 20:49:57','2024-11-26 20:49:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/C44CAEB1-7921-46CF-AF1A-D361F7583648.jpg',0,'attachment','image/jpeg',0),
(407,1,'2024-11-26 20:49:58','2024-11-26 20:49:58','','84FB92D7-8FFC-4005-AE08-52DF3B578067','','inherit','open','closed','','84fb92d7-8ffc-4005-ae08-52df3b578067','','','2024-11-26 20:49:58','2024-11-26 20:49:58','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/84FB92D7-8FFC-4005-AE08-52DF3B578067.jpg',0,'attachment','image/jpeg',0),
(408,1,'2024-11-26 20:50:06','2024-11-26 20:50:06','','IMG_4130','','inherit','open','closed','','img_4130','','','2024-11-26 20:50:06','2024-11-26 20:50:06','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_4130.jpg',0,'attachment','image/jpeg',0),
(409,1,'2024-11-26 20:50:11','2024-11-26 20:50:11','','D0F1472C-36EA-4508-BD49-3E62145B391D','','inherit','open','closed','','d0f1472c-36ea-4508-bd49-3e62145b391d','','','2024-11-26 20:50:11','2024-11-26 20:50:11','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/D0F1472C-36EA-4508-BD49-3E62145B391D.jpg',0,'attachment','image/jpeg',0),
(410,1,'2024-11-26 20:50:13','2024-11-26 20:50:13','','B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE','','inherit','open','closed','','b40e25aa-5aea-4c98-85a1-efee4f2274de','','','2024-11-26 20:50:13','2024-11-26 20:50:13','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/B40E25AA-5AEA-4C98-85A1-EFEE4F2274DE.jpg',0,'attachment','image/jpeg',0),
(411,1,'2024-11-26 20:53:48','2024-11-26 20:53:48','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Five Guys &amp; Chipotle\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-26 20:53:48','2024-11-26 20:53:48','',320,'https://dev.baselinestucco.com/?p=411',0,'revision','',0),
(412,1,'2024-11-26 20:54:30','2024-11-26 20:54:30','','house','','inherit','open','closed','','house','','','2024-11-26 20:54:30','2024-11-26 20:54:30','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/house.gif',0,'attachment','image/gif',0),
(413,1,'2024-11-26 20:54:44','2024-11-26 20:54:44','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Health Quest Lloyd\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Hyundai Goshen\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Healey Dodge\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-26 20:54:44','2024-11-26 20:54:44','',320,'https://dev.baselinestucco.com/?p=413',0,'revision','',0),
(414,1,'2024-11-26 20:55:15','2024-11-26 20:55:15','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Lagrange Farms\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-26 20:55:15','2024-11-26 20:55:15','',320,'https://dev.baselinestucco.com/?p=414',0,'revision','',0),
(415,1,'2024-11-26 20:55:26','2024-11-26 20:55:26','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-26 20:55:26','2024-11-26 20:55:26','',320,'https://dev.baselinestucco.com/?p=415',0,'revision','',0),
(416,1,'2024-11-26 21:00:48','2024-11-26 21:00:48','[cs_content _p=\'3\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Privacy Policy\\n\\n[/cs_content_seo][cs_element_line _id=\"5\" ][cs_element_text _id=\"6\" ][cs_content_seo]Baseline Stucco (\"we,\" \"our,\" or \"us\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website www.baselinestucco.com or interact with us online or offline.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_text _id=\"9\" ][cs_content_seo]1. Information We Collect\nWe may collect the following types of information:\na. Personal Information\n\nName, email address, phone number, and other contact details when you fill out forms or contact us.\nAny information you voluntarily provide during consultations, inquiries, or service requests.\n\nb. Non-Personal Information\n\nIP address, browser type, operating system, and other technical details gathered automatically through cookies and analytics tools.\nData about your interactions with our website, such as pages visited and time spent on each page.\n\n\n2. How We Use Your Information\nWe use the information we collect to:\n\nProvide, manage, and improve our services.\nRespond to your inquiries and process your service requests.\nSend updates, promotional materials, or service-related communications (you may opt out at any time).\nAnalyze website usage to enhance user experience.\nComply with legal obligations or enforce our terms and conditions.\n\n\n3. Sharing of Information\nWe do not sell, rent, or share your personal information with third parties except as necessary to:\n\nWork with trusted service providers who assist us in delivering services (e.g., payment processors or hosting providers).\nComply with applicable laws, regulations, or legal processes.\nProtect our rights, property, or safety, as well as those of our clients or others.\n\n\n4. Cookies and Tracking Technologies\nWe use cookies and similar tracking technologies to:\n\nImprove website functionality and user experience.\nAnalyze website traffic and performance.\nProvide tailored content and advertisements.\n\nYou can disable cookies through your browser settings, but this may impact your experience on our website.\n\n5. Data Security\nWe implement appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. However, no data transmission over the internet can be guaranteed as 100% secure, so we encourage you to take precautions when sharing sensitive information online.\n\n6. Your Rights\nYou have the right to:\n\nAccess and request a copy of the personal information we hold about you.\nRequest corrections to inaccurate or incomplete information.\nRequest the deletion of your personal data, subject to legal and contractual obligations.\nOpt out of receiving marketing communications at any time.\n\nTo exercise your rights, please contact us using the details below.\n\n7. Third-Party Links\nOur website may contain links to third-party websites. We are not responsible for the privacy practices or content of these external sites. We encourage you to review their privacy policies before providing any personal information.\n\n8. Updates to This Privacy Policy\nWe may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.\n\n9. Contact Us\nIf you have any questions, concerns, or requests related to this Privacy Policy, please contact us:\n\nEmail: [Insert Email Address]\nPhone: [Insert Phone Number]\nMailing Address: [Insert Physical Address]\n\nThank you for trusting Baseline Stucco. Your privacy and security are important to us.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-11-26 21:00:48','2024-11-26 21:00:48','',3,'https://dev.baselinestucco.com/?p=416',0,'revision','',0),
(417,1,'2024-11-26 21:04:54','2024-11-26 21:04:54','[cs_content _p=\'3\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Privacy Policy\\n\\n[/cs_content_seo][cs_element_line _id=\"5\" ][cs_element_text _id=\"6\" ][cs_content_seo]Baseline Stucco (\"we,\" \"our,\" or \"us\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website www.baselinestucco.com&nbsp;or interact with us online or offline.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_text _id=\"9\" ][cs_content_seo]1. Information We Collect\nWe may collect the following types of information:\n\na. Personal Information\n\n 	Name, email address, phone number, and other contact details when you fill out forms or contact us.\n 	Any information you voluntarily provide during consultations, inquiries, or service requests.\n\nb. Non-Personal Information\n\n 	IP address, browser type, operating system, and other technical details gathered automatically through cookies and analytics tools.\n 	Data about your interactions with our website, such as pages visited and time spent on each page.\n\n\n\n\n2. How We Use Your Information\nWe use the information we collect to:\n\n\n 	Provide, manage, and improve our services.\n 	Respond to your inquiries and process your service requests.\n 	Send updates, promotional materials, or service-related communications (you may opt out at any time).\n 	Analyze website usage to enhance user experience.\n 	Comply with legal obligations or enforce our terms and conditions.\n\n\n\n\n3. Sharing of Information\nWe do not sell, rent, or share your personal information with third parties except as necessary to:\n\n\n 	Work with trusted service providers who assist us in delivering services (e.g., payment processors or hosting providers).\n 	Comply with applicable laws, regulations, or legal processes.\n 	Protect our rights, property, or safety, as well as those of our clients or others.\n\n\n\n\n4. Cookies and Tracking Technologies\nWe use cookies and similar tracking technologies to:\n\n\n 	Improve website functionality and user experience.\n 	Analyze website traffic and performance.\n 	Provide tailored content and advertisements.\n\nYou can disable cookies through your browser settings, but this may impact your experience on our website.\n\n\n\n\n5. Data Security\nWe implement appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. However, no data transmission over the internet can be guaranteed as 100% secure, so we encourage you to take precautions when sharing sensitive information online.\n\n\n\n\n6. Your Rights\nYou have the right to:\n\n\n 	Access and request a copy of the personal information we hold about you.\n 	Request corrections to inaccurate or incomplete information.\n 	Request the deletion of your personal data, subject to legal and contractual obligations.\n 	Opt out of receiving marketing communications at any time.\n\nTo exercise your rights, please contact us using the details below.\n\n\n\n\n7. Third-Party Links\nOur website may contain links to third-party websites. We are not responsible for the privacy practices or content of these external sites. We encourage you to review their privacy policies before providing any personal information.\n\n\n\n\n8. Updates to This Privacy Policy\nWe may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.\n\n\n\n\n9. Contact Us\nIf you have any questions, concerns, or requests related to this Privacy Policy, please contact us:\n\n\n 	Email: [Insert Email Address]\n 	Phone: [Insert Phone Number]\n 	Mailing Address: [Insert Physical Address]\n\nThank you for trusting Baseline Stucco. Your privacy and security are important to us.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-11-26 21:04:54','2024-11-26 21:04:54','',3,'https://dev.baselinestucco.com/?p=417',0,'revision','',0),
(418,1,'2024-11-26 21:08:15','2024-11-26 21:08:15','[cs_content _p=\'3\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]Privacy Policy\\n\\n[/cs_content_seo][cs_element_line _id=\"5\" ][cs_element_text _id=\"6\" ][cs_content_seo]Baseline Stucco (\"we,\" \"our,\" or \"us\") values your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website www.baselinestucco.com&nbsp;or interact with us online or offline.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"7\" ][cs_element_column _id=\"8\" ][cs_element_text _id=\"9\" ][cs_content_seo]We may collect both personal and non-personal information. Personal information includes details you provide to us, such as your name, email address, phone number, and other contact details when filling out forms, contacting us, or requesting our services. Non-personal information is collected automatically and may include your IP address, browser type, operating system, and information about your interactions with our website, such as pages visited and time spent on each page.\nThe information we collect is used to provide, manage, and improve our services, respond to inquiries, process service requests, send updates or promotional materials, and analyze website usage to enhance the user experience. We may also use your information to comply with legal obligations or enforce our terms and conditions.\nWe do not sell, rent, or share your personal information with third parties except as necessary. This includes working with trusted service providers who assist us in delivering services, complying with applicable laws, or protecting our rights and safety or those of our clients.\nCookies and similar tracking technologies are used to improve website functionality, analyze traffic, and provide tailored content and advertisements. You can disable cookies through your browser settings, but doing so may affect your website experience.\nWe take appropriate technical and organizational measures to protect your personal information from unauthorized access, disclosure, or misuse. While we strive to secure your data, no method of data transmission over the internet is entirely secure, so we encourage you to take precautions when sharing sensitive information online.\nYou have rights regarding your personal data, including accessing, correcting, or requesting deletion of the information we hold about you. You can also opt out of receiving marketing communications at any time. To exercise your rights, please contact us using the details provided below.\nOur website may include links to third-party websites, which have their own privacy practices. We are not responsible for the content or privacy policies of these external sites and encourage you to review their policies before providing personal information.\nWe may update this Privacy Policy periodically to reflect changes in our practices, legal requirements, or other factors. Updates will be posted on this page with a revised effective date.\nIf you have questions, concerns, or requests related to this Privacy Policy, please contact us by email at [Insert Email Address], by phone at [Insert Phone Number], or by mail at [Insert Physical Address].\nThank you for trusting Baseline Stucco. Your privacy and security are important to us.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-11-26 21:08:15','2024-11-26 21:08:15','',3,'https://dev.baselinestucco.com/?p=418',0,'revision','',0),
(419,1,'2024-11-27 14:11:37','2024-11-27 14:11:37','','IMG_0786','','inherit','open','closed','','img_0786','','','2024-11-27 14:11:37','2024-11-27 14:11:37','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0786.heic',0,'attachment','image/heic',0),
(420,1,'2024-11-27 14:11:38','2024-11-27 14:11:38','','IMG_0785','','inherit','open','closed','','img_0785','','','2024-11-27 14:11:38','2024-11-27 14:11:38','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0785.heic',0,'attachment','image/heic',0),
(421,1,'2024-11-27 14:11:40','2024-11-27 14:11:40','','IMG_0783','','inherit','open','closed','','img_0783','','','2024-11-27 14:11:40','2024-11-27 14:11:40','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0783.heic',0,'attachment','image/heic',0),
(422,1,'2024-11-27 14:11:41','2024-11-27 14:11:41','','IMG_0782','','inherit','open','closed','','img_0782','','','2024-11-27 14:11:41','2024-11-27 14:11:41','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0782.heic',0,'attachment','image/heic',0),
(423,1,'2024-11-27 14:11:43','2024-11-27 14:11:43','','IMG_0781','','inherit','open','closed','','img_0781','','','2024-11-27 14:11:43','2024-11-27 14:11:43','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0781.heic',0,'attachment','image/heic',0),
(424,1,'2024-11-27 14:13:11','2024-11-27 14:13:11','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]ResidenPelhamtial\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:13:11','2024-11-27 14:13:11','',320,'https://dev.baselinestucco.com/?p=424',0,'revision','',0),
(425,1,'2024-11-27 14:14:13','2024-11-27 14:14:13','','IMG_1262','','inherit','open','closed','','img_1262','','','2024-11-27 14:14:13','2024-11-27 14:14:13','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1262.heic',0,'attachment','image/heic',0),
(426,1,'2024-11-27 14:14:15','2024-11-27 14:14:15','','IMG_1258','','inherit','open','closed','','img_1258','','','2024-11-27 14:14:15','2024-11-27 14:14:15','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1258.heic',0,'attachment','image/heic',0),
(427,1,'2024-11-27 14:14:16','2024-11-27 14:14:16','','IMG_1255','','inherit','open','closed','','img_1255','','','2024-11-27 14:14:16','2024-11-27 14:14:16','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1255.heic',0,'attachment','image/heic',0),
(428,1,'2024-11-27 14:14:18','2024-11-27 14:14:18','','IMG_1253','','inherit','open','closed','','img_1253','','','2024-11-27 14:14:18','2024-11-27 14:14:18','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1253.heic',0,'attachment','image/heic',0),
(429,1,'2024-11-27 14:14:19','2024-11-27 14:14:19','','IMG_1251','','inherit','open','closed','','img_1251','','','2024-11-27 14:14:19','2024-11-27 14:14:19','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1251.heic',0,'attachment','image/heic',0),
(430,1,'2024-11-27 14:14:21','2024-11-27 14:14:21','','IMG_1249','','inherit','open','closed','','img_1249','','','2024-11-27 14:14:21','2024-11-27 14:14:21','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_1249.heic',0,'attachment','image/heic',0),
(431,1,'2024-11-27 14:14:22','2024-11-27 14:14:22','','IMG_0786','','inherit','open','closed','','img_0786-2','','','2024-11-27 14:14:22','2024-11-27 14:14:22','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_0786-1.heic',0,'attachment','image/heic',0);
INSERT INTO `wp_posts` VALUES
(432,1,'2024-11-27 14:17:01','2024-11-27 14:17:01','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:17:01','2024-11-27 14:17:01','',320,'https://dev.baselinestucco.com/?p=432',0,'revision','',0),
(433,1,'2024-11-27 14:18:02','2024-11-27 14:18:02','','IMG_2439','','inherit','open','closed','','img_2439','','','2024-11-27 14:18:02','2024-11-27 14:18:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2439.heic',0,'attachment','image/heic',0),
(434,1,'2024-11-27 14:18:03','2024-11-27 14:18:03','','IMG_2440','','inherit','open','closed','','img_2440','','','2024-11-27 14:18:03','2024-11-27 14:18:03','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2440.heic',0,'attachment','image/heic',0),
(435,1,'2024-11-27 14:18:04','2024-11-27 14:18:04','','IMG_2435','','inherit','open','closed','','img_2435','','','2024-11-27 14:18:04','2024-11-27 14:18:04','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2435.heic',0,'attachment','image/heic',0),
(436,1,'2024-11-27 14:18:04','2024-11-27 14:18:04','','IMG_2436','','inherit','open','closed','','img_2436','','','2024-11-27 14:18:04','2024-11-27 14:18:04','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2436.heic',0,'attachment','image/heic',0),
(437,1,'2024-11-27 14:18:05','2024-11-27 14:18:05','','IMG_2438','','inherit','open','closed','','img_2438','','','2024-11-27 14:18:05','2024-11-27 14:18:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2438.heic',0,'attachment','image/heic',0),
(438,1,'2024-11-27 14:20:44','2024-11-27 14:20:44','','IMG_3196','','inherit','open','closed','','img_3196','','','2024-11-27 14:20:44','2024-11-27 14:20:44','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_3196.heic',0,'attachment','image/heic',0),
(439,1,'2024-11-27 14:20:45','2024-11-27 14:20:45','','IMG_3194','','inherit','open','closed','','img_3194','','','2024-11-27 14:20:45','2024-11-27 14:20:45','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_3194.heic',0,'attachment','image/heic',0),
(440,1,'2024-11-27 14:20:46','2024-11-27 14:20:46','','IMG_3195','','inherit','open','closed','','img_3195','','','2024-11-27 14:20:46','2024-11-27 14:20:46','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_3195.heic',0,'attachment','image/heic',0),
(441,1,'2024-11-27 14:20:46','2024-11-27 14:20:46','','IMG_3197','','inherit','open','closed','','img_3197','','','2024-11-27 14:20:46','2024-11-27 14:20:46','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_3197.heic',0,'attachment','image/heic',0),
(442,1,'2024-11-27 14:20:47','2024-11-27 14:20:47','','649FA6B2-1E2E-4C20-8BBD-A7FBA51EB500','','inherit','open','closed','','649fa6b2-1e2e-4c20-8bbd-a7fba51eb500','','','2024-11-27 14:20:47','2024-11-27 14:20:47','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/649FA6B2-1E2E-4C20-8BBD-A7FBA51EB500.heic',0,'attachment','image/heic',0),
(443,1,'2024-11-27 14:20:51','2024-11-27 14:20:51','','IMG_6294','','inherit','open','closed','','img_6294','','','2024-11-27 14:20:51','2024-11-27 14:20:51','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_6294.heic',0,'attachment','image/heic',0),
(444,1,'2024-11-27 14:20:57','2024-11-27 14:20:57','','IMG_6292','','inherit','open','closed','','img_6292','','','2024-11-27 14:20:57','2024-11-27 14:20:57','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_6292.heic',0,'attachment','image/heic',0),
(445,1,'2024-11-27 14:21:02','2024-11-27 14:21:02','','IMG_6291','','inherit','open','closed','','img_6291','','','2024-11-27 14:21:02','2024-11-27 14:21:02','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_6291.heic',0,'attachment','image/heic',0),
(446,1,'2024-11-27 14:21:05','2024-11-27 14:21:05','','IMG_2439','','inherit','open','closed','','img_2439-2','','','2024-11-27 14:21:05','2024-11-27 14:21:05','',0,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/IMG_2439-1.heic',0,'attachment','image/heic',0),
(447,1,'2024-11-27 14:22:08','2024-11-27 14:22:08','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Pleasantville, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"194\" ][cs_element_layout_grid _id=\"195\" ][cs_element_layout_cell _id=\"196\" ][cs_element_image _id=\"197\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"198\" ][cs_element_image _id=\"199\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"200\" ][cs_element_image _id=\"201\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"202\" ][cs_element_image _id=\"203\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"204\" ][cs_element_row _id=\"205\" ][cs_element_column _id=\"206\" ][cs_element_button _id=\"207\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:22:08','2024-11-27 14:22:08','',320,'https://dev.baselinestucco.com/?p=447',0,'revision','',0),
(448,1,'2024-11-27 14:22:26','2024-11-27 14:22:26','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Pleasantville, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"119\" ][cs_element_layout_grid _id=\"120\" ][cs_element_layout_cell _id=\"121\" ][cs_element_image _id=\"122\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"123\" ][cs_element_image _id=\"124\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"125\" ][cs_element_image _id=\"126\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"127\" ][cs_element_image _id=\"128\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"129\" ][cs_element_layout_row _id=\"130\" ][cs_element_layout_column _id=\"131\" ][cs_element_text _id=\"132\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"133\" ][cs_element_layout_div _id=\"134\" ][cs_element_layout_grid _id=\"135\" ][cs_element_layout_cell _id=\"136\" ][cs_element_image _id=\"137\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"138\" ][cs_element_image _id=\"139\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"140\" ][cs_element_image _id=\"141\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"142\" ][cs_element_image _id=\"143\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"144\" ][cs_element_layout_row _id=\"145\" ][cs_element_layout_column _id=\"146\" ][cs_element_text _id=\"147\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"148\" ][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"169\" ][cs_element_layout_grid _id=\"170\" ][cs_element_layout_cell _id=\"171\" ][cs_element_image _id=\"172\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"173\" ][cs_element_image _id=\"174\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"175\" ][cs_element_image _id=\"176\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"177\" ][cs_element_image _id=\"178\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"179\" ][cs_element_layout_row _id=\"180\" ][cs_element_layout_column _id=\"181\" ][cs_element_text _id=\"182\" ][cs_content_seo]Fishkill, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"183\" ][cs_element_layout_div _id=\"184\" ][cs_element_layout_grid _id=\"185\" ][cs_element_layout_cell _id=\"186\" ][cs_element_image _id=\"187\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"188\" ][cs_element_image _id=\"189\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"190\" ][cs_element_image _id=\"191\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"192\" ][cs_element_image _id=\"193\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"194\" ][cs_element_row _id=\"195\" ][cs_element_column _id=\"196\" ][cs_element_button _id=\"197\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:22:26','2024-11-27 14:22:26','',320,'https://dev.baselinestucco.com/?p=448',0,'revision','',0),
(449,1,'2024-11-27 14:24:23','2024-11-27 14:24:23','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Pleasantville, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]hillsdale, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_layout_row _id=\"120\" ][cs_element_layout_column _id=\"121\" ][cs_element_text _id=\"122\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"123\" ][cs_element_layout_div _id=\"124\" ][cs_element_layout_grid _id=\"125\" ][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"132\" ][cs_element_image _id=\"133\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"134\" ][cs_element_layout_row _id=\"135\" ][cs_element_layout_column _id=\"136\" ][cs_element_text _id=\"137\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"138\" ][cs_element_layout_div _id=\"139\" ][cs_element_layout_grid _id=\"140\" ][cs_element_layout_cell _id=\"141\" ][cs_element_image _id=\"142\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"143\" ][cs_element_image _id=\"144\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"145\" ][cs_element_image _id=\"146\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"147\" ][cs_element_image _id=\"148\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"169\" ][cs_element_layout_row _id=\"170\" ][cs_element_layout_column _id=\"171\" ][cs_element_text _id=\"172\" ][cs_content_seo]Fishkill, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"173\" ][cs_element_layout_div _id=\"174\" ][cs_element_layout_grid _id=\"175\" ][cs_element_layout_cell _id=\"176\" ][cs_element_image _id=\"177\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"178\" ][cs_element_image _id=\"179\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"180\" ][cs_element_image _id=\"181\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"182\" ][cs_element_image _id=\"183\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"184\" ][cs_element_row _id=\"185\" ][cs_element_column _id=\"186\" ][cs_element_button _id=\"187\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:24:23','2024-11-27 14:24:23','',320,'https://dev.baselinestucco.com/?p=449',0,'revision','',0),
(450,1,'2024-11-27 14:27:31','2024-11-27 14:27:31','[cs_content _p=\'320\'][cs_element_section _id=\"1\" ][cs_element_row _id=\"2\" ][cs_element_column _id=\"3\" ][cs_element_headline _id=\"4\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"5\" ][cs_element_row _id=\"6\" ][cs_element_column _id=\"7\" ][cs_element_headline _id=\"8\" ][cs_content_seo]Residential Stucco: Transform Your Home with Timeless Beauty and Durability\\n\\nAt Baseline Stucco, we specialize in creating stunning, high-quality stucco finishes that elevate the look and feel of your home. Whether you\'re building a new house or renovating an existing one, our residential stucco services combine craftsmanship, durability, and aesthetic appeal to deliver exceptional results.Stucco is more than just an exterior finish&mdash;it\'s a lasting investment in your home&rsquo;s beauty and protection. Our expert team works with you to design and apply custom textures and finishes that perfectly match your vision and architectural style. From modern smooth coatings to classic Mediterranean designs, we bring your ideas to life with precision and care.\\n\\n[/cs_content_seo][cs_element_text _id=\"9\" ][cs_content_seo]Our Residential Stucco Services Include:\n\n 	New construction stucco applications.\n 	Renovations and upgrades to existing stucco finishes.\n 	Crack repair and seamless patchwork for a flawless look.\n 	Custom texturing and color matching to fit your home’s design.\n\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"10\" ][cs_element_image _id=\"11\" ][cs_element_text _id=\"12\" ][cs_content_seo]Why Choose Baseline Stucco for Your Home?\n\nCustomizable Designs: Choose from a wide range of colors and textures to suit your style.\nIncreased Property Value: Enhance your home\'s curb appeal and market value.\nEnergy Efficiency: Stucco\'s natural insulating properties help reduce heating and cooling costs.\nWeather Resistance: Protect your home from Florida\'s harsh weather, including rain, wind, and humidity.\nLow Maintenance: Durable and easy to maintain, saving you time and effort.\n\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"13\" ][cs_element_column _id=\"14\" ][cs_element_counter _id=\"15\" ][/cs_element_column][cs_element_column _id=\"16\" ][cs_element_counter _id=\"17\" ][/cs_element_column][cs_element_column _id=\"18\" ][cs_element_counter _id=\"19\" ][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"20\" ][cs_element_row _id=\"21\" ][cs_element_column _id=\"22\" ][cs_element_button _id=\"23\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"25\" ][cs_element_row _id=\"26\" ][cs_element_column _id=\"27\" ][cs_element_headline _id=\"28\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"29\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"31\" ][cs_element_headline _id=\"32\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"33\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"34\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_headline _id=\"36\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"37\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"38\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"39\" ][cs_element_layout_row _id=\"40\" ][cs_element_layout_column _id=\"41\" ][cs_element_text _id=\"42\" ][cs_content_seo]Wappingers Falls, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"43\" ][cs_element_layout_div _id=\"44\" ][cs_element_layout_grid _id=\"45\" ][cs_element_layout_cell _id=\"46\" ][cs_element_image _id=\"47\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"48\" ][cs_element_image _id=\"49\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"50\" ][cs_element_image _id=\"51\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"52\" ][cs_element_image _id=\"53\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"54\" ][cs_element_layout_grid _id=\"55\" ][cs_element_layout_cell _id=\"56\" ][cs_element_image _id=\"57\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"58\" ][cs_element_image _id=\"59\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"60\" ][cs_element_image _id=\"61\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"62\" ][cs_element_image _id=\"63\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"64\" ][cs_element_layout_row _id=\"65\" ][cs_element_layout_column _id=\"66\" ][cs_element_text _id=\"67\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"68\" ][cs_element_layout_div _id=\"69\" ][cs_element_layout_grid _id=\"70\" ][cs_element_layout_cell _id=\"71\" ][cs_element_image _id=\"72\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"73\" ][cs_element_image _id=\"74\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"75\" ][cs_element_image _id=\"76\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"77\" ][cs_element_image _id=\"78\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"79\" ][cs_element_layout_row _id=\"80\" ][cs_element_layout_column _id=\"81\" ][cs_element_text _id=\"82\" ][cs_content_seo]Pleasantville, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"83\" ][cs_element_layout_div _id=\"84\" ][cs_element_layout_grid _id=\"85\" ][cs_element_layout_cell _id=\"86\" ][cs_element_image _id=\"87\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"88\" ][cs_element_image _id=\"89\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"90\" ][cs_element_image _id=\"91\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"92\" ][cs_element_image _id=\"93\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"94\" ][cs_element_layout_grid _id=\"95\" ][cs_element_layout_cell _id=\"96\" ][cs_element_image _id=\"97\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"98\" ][cs_element_image _id=\"99\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"100\" ][cs_element_image _id=\"101\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"102\" ][cs_element_image _id=\"103\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"104\" ][cs_element_layout_row _id=\"105\" ][cs_element_layout_column _id=\"106\" ][cs_element_text _id=\"107\" ][cs_content_seo]hillsdale, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"108\" ][cs_element_layout_div _id=\"109\" ][cs_element_layout_grid _id=\"110\" ][cs_element_layout_cell _id=\"111\" ][cs_element_image _id=\"112\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"113\" ][cs_element_image _id=\"114\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"115\" ][cs_element_image _id=\"116\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"117\" ][cs_element_image _id=\"118\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"119\" ][cs_element_layout_row _id=\"120\" ][cs_element_layout_column _id=\"121\" ][cs_element_text _id=\"122\" ][cs_content_seo]Pelham Manor\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"123\" ][cs_element_layout_div _id=\"124\" ][cs_element_layout_grid _id=\"125\" ][cs_element_layout_cell _id=\"126\" ][cs_element_image _id=\"127\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"128\" ][cs_element_image _id=\"129\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"130\" ][cs_element_image _id=\"131\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"132\" ][cs_element_image _id=\"133\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"134\" ][cs_element_layout_row _id=\"135\" ][cs_element_layout_column _id=\"136\" ][cs_element_text _id=\"137\" ][cs_content_seo]Guest &amp; Entertaining\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"138\" ][cs_element_layout_div _id=\"139\" ][cs_element_layout_grid _id=\"140\" ][cs_element_layout_cell _id=\"141\" ][cs_element_image _id=\"142\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"143\" ][cs_element_image _id=\"144\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"145\" ][cs_element_image _id=\"146\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"147\" ][cs_element_image _id=\"148\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"149\" ][cs_element_layout_grid _id=\"150\" ][cs_element_layout_cell _id=\"151\" ][cs_element_image _id=\"152\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"153\" ][cs_element_image _id=\"154\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"155\" ][cs_element_image _id=\"156\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"157\" ][cs_element_image _id=\"158\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][cs_element_layout_div _id=\"159\" ][cs_element_layout_grid _id=\"160\" ][cs_element_layout_cell _id=\"161\" ][cs_element_image _id=\"162\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"163\" ][cs_element_image _id=\"164\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"165\" ][cs_element_image _id=\"166\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"167\" ][cs_element_image _id=\"168\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"169\" ][cs_element_layout_row _id=\"170\" ][cs_element_layout_column _id=\"171\" ][cs_element_text _id=\"172\" ][cs_content_seo]Fishkill, NY\\n\\n[/cs_content_seo][/cs_element_layout_column][/cs_element_layout_row][/cs_element_section][cs_element_section _id=\"173\" ][cs_element_layout_div _id=\"174\" ][cs_element_layout_grid _id=\"175\" ][cs_element_layout_cell _id=\"176\" ][cs_element_image _id=\"177\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"178\" ][cs_element_image _id=\"179\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"180\" ][cs_element_image _id=\"181\" ][/cs_element_layout_cell][cs_element_layout_cell _id=\"182\" ][cs_element_image _id=\"183\" ][/cs_element_layout_cell][/cs_element_layout_grid][/cs_element_layout_div][/cs_element_section][cs_element_section _id=\"184\" ][cs_element_row _id=\"185\" ][cs_element_column _id=\"186\" ][cs_element_button _id=\"187\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Residential','','inherit','closed','closed','','320-revision-v1','','','2024-11-27 14:27:31','2024-11-27 14:27:31','',320,'https://dev.baselinestucco.com/?p=450',0,'revision','',0),
(451,1,'2024-11-27 14:30:23','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-11-27 14:30:23','0000-00-00 00:00:00','',0,'https://dev.baselinestucco.com/?p=451',0,'post','',0),
(452,1,'2024-11-27 14:33:21','2024-11-27 14:33:21','<!-- wp:image {\"id\":453,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d.webp\" alt=\"\" class=\"wp-image-453\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Exceptional Insulation for Year-Round Comfort</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of stucco’s biggest advantages is its ability to insulate homes and buildings effectively. When combined with EIFS, stucco becomes a powerful thermal barrier.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Winter Benefits:</strong> During New York’s frigid winters, stucco with EIFS helps retain indoor heat, reducing the strain on your heating system. The insulation minimizes heat loss through the exterior walls, keeping your home or business warm and cozy.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Summer Benefits:</strong> In the summer, stucco helps block heat from entering the building, allowing air conditioning systems to work more efficiently. This results in cooler interiors and lower energy bills.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With EIFS, you can achieve R-values starting at 6 and going up to 12 or higher, depending on the thickness of the insulation layer. This level of thermal resistance makes stucco a smart investment for any property owner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Energy Savings That Pay Off</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By reducing the demand on your HVAC systems, stucco directly contributes to lower energy bills. Homes and businesses with stucco exteriors often see significant savings on heating and cooling costs over time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beyond financial savings, energy-efficient buildings also reduce their carbon footprint, making stucco an environmentally friendly choice for property owners looking to go green.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Durable Protection Against New York’s Weather</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>New York’s climate is unpredictable, with heavy snow, rain, and humidity all playing a role. Stucco is not only an excellent insulator but also a durable solution that protects your property from the elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Weather Resistance:</strong> Stucco’s sturdy surface can withstand New York’s snow, ice, and rain without losing its integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Moisture Control:</strong> EIFS includes a weather-resistant barrier that prevents water from seeping into the building, reducing the risk of mold and structural damage.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With proper maintenance, stucco can handle New York’s diverse weather conditions, providing long-lasting performance and reliability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Aesthetic and Functional Benefits Combined</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While energy efficiency is a primary advantage, stucco also offers unmatched versatility in design. Whether you own a classic brownstone, a modern high-rise, or a cozy suburban home, stucco can be tailored to fit your style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Customizable Finishes:</strong> Choose from smooth, textured, or patterned surfaces in a variety of colors.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Timeless Appeal:</strong> Stucco enhances curb appeal, making your property look polished and professional.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>This combination of beauty and function makes stucco a preferred choice for New York property owners looking to enhance both performance and aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Baseline Stucco?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we bring over 25 years of experience and expertise to every project. Our certified team specializes in EIFS and advanced stucco systems that are designed to meet the unique needs of New York properties.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you choose us, you’re not just getting a contractor—you’re getting a partner dedicated to delivering results that exceed your expectations. From new construction to renovations, we’re here to help you create a property that’s energy-efficient, durable, and beautiful.</p>\n<!-- /wp:paragraph -->','How Stucco Enhances Energy Efficiency in New York\'s Harsh Winters and Hot Summers','','publish','open','open','','how-stucco-enhances-energy-efficiency-in-new-yorks-harsh-winters-and-hot-summers','','','2024-11-27 14:33:21','2024-11-27 14:33:21','',0,'https://dev.baselinestucco.com/?p=452',0,'post','',0),
(453,1,'2024-11-27 14:33:04','2024-11-27 14:33:04','','verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d','','inherit','open','closed','','verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d','','','2024-11-27 14:33:04','2024-11-27 14:33:04','',452,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d.webp',0,'attachment','image/webp',0),
(454,1,'2024-11-27 14:33:21','2024-11-27 14:33:21','<!-- wp:image {\"id\":453,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_2e3f82be-325d-4b0f-b80e-a3e42db3d78d.webp\" alt=\"\" class=\"wp-image-453\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Exceptional Insulation for Year-Round Comfort</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of stucco’s biggest advantages is its ability to insulate homes and buildings effectively. When combined with EIFS, stucco becomes a powerful thermal barrier.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Winter Benefits:</strong> During New York’s frigid winters, stucco with EIFS helps retain indoor heat, reducing the strain on your heating system. The insulation minimizes heat loss through the exterior walls, keeping your home or business warm and cozy.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Summer Benefits:</strong> In the summer, stucco helps block heat from entering the building, allowing air conditioning systems to work more efficiently. This results in cooler interiors and lower energy bills.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With EIFS, you can achieve R-values starting at 6 and going up to 12 or higher, depending on the thickness of the insulation layer. This level of thermal resistance makes stucco a smart investment for any property owner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Energy Savings That Pay Off</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By reducing the demand on your HVAC systems, stucco directly contributes to lower energy bills. Homes and businesses with stucco exteriors often see significant savings on heating and cooling costs over time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Beyond financial savings, energy-efficient buildings also reduce their carbon footprint, making stucco an environmentally friendly choice for property owners looking to go green.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Durable Protection Against New York’s Weather</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>New York’s climate is unpredictable, with heavy snow, rain, and humidity all playing a role. Stucco is not only an excellent insulator but also a durable solution that protects your property from the elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Weather Resistance:</strong> Stucco’s sturdy surface can withstand New York’s snow, ice, and rain without losing its integrity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Moisture Control:</strong> EIFS includes a weather-resistant barrier that prevents water from seeping into the building, reducing the risk of mold and structural damage.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>With proper maintenance, stucco can handle New York’s diverse weather conditions, providing long-lasting performance and reliability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Aesthetic and Functional Benefits Combined</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While energy efficiency is a primary advantage, stucco also offers unmatched versatility in design. Whether you own a classic brownstone, a modern high-rise, or a cozy suburban home, stucco can be tailored to fit your style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Customizable Finishes:</strong> Choose from smooth, textured, or patterned surfaces in a variety of colors.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Timeless Appeal:</strong> Stucco enhances curb appeal, making your property look polished and professional.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>This combination of beauty and function makes stucco a preferred choice for New York property owners looking to enhance both performance and aesthetics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Baseline Stucco?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we bring over 25 years of experience and expertise to every project. Our certified team specializes in EIFS and advanced stucco systems that are designed to meet the unique needs of New York properties.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you choose us, you’re not just getting a contractor—you’re getting a partner dedicated to delivering results that exceed your expectations. From new construction to renovations, we’re here to help you create a property that’s energy-efficient, durable, and beautiful.</p>\n<!-- /wp:paragraph -->','How Stucco Enhances Energy Efficiency in New York\'s Harsh Winters and Hot Summers','','inherit','closed','closed','','452-revision-v1','','','2024-11-27 14:33:21','2024-11-27 14:33:21','',452,'https://dev.baselinestucco.com/?p=454',0,'revision','',0),
(455,1,'2024-11-27 14:36:06','2024-11-27 14:36:06','<!-- wp:paragraph -->\n<p>New York is a state rich in history, with architectural treasures ranging from historic brownstones and classic row houses to iconic commercial buildings. These structures are a testament to the craftsmanship of the past, but maintaining their charm while ensuring they meet modern standards can be a challenge. That’s where stucco comes in as a perfect solution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in helping property owners and preservationists restore and protect historic buildings. By blending traditional aesthetics with modern techniques, we offer stucco solutions that preserve the past while ensuring durability for the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":456,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632.webp\" alt=\"\" class=\"wp-image-456\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Why Stucco is Ideal for Historic Restorations</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco has long been a preferred material in architecture, known for its timeless appeal and adaptability. For historic buildings, stucco offers several advantages:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Authentic Look:</strong> Stucco’s versatile finishes can replicate traditional textures and colors, ensuring any restoration stays true to the building’s original design.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Durability:</strong> Modern stucco techniques add durability to historic structures, protecting them from New York’s harsh weather conditions while maintaining their classic appearance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Breathability:</strong> Stucco allows moisture to evaporate naturally, which is essential for older buildings that may have porous materials in their structure.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Addressing the Unique Challenges of Historic Buildings</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring historic properties requires a delicate balance between maintaining their character and upgrading them to meet modern safety and efficiency standards. Stucco allows us to achieve this balance:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Structural Integrity:</strong> Many older buildings face issues like crumbling facades or deteriorating exteriors. Stucco reinforces these structures without compromising their historic charm.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Energy Efficiency:</strong> Incorporating EIFS (Exterior Insulation Finish System) during restoration improves insulation without altering the building’s outward appearance. This reduces energy costs and enhances comfort while keeping the structure historically accurate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Weather Resistance:</strong> New York’s historic buildings often endure rain, snow, and freeze-thaw cycles. Modern stucco techniques provide an added layer of protection against these elements.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Customization for Every Era and Style</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re restoring a Victorian-era home, an Art Deco masterpiece, or a Federal-style building, stucco can be tailored to match the architectural details of any era. Baseline Stucco offers:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Textured Finishes:</strong> From smooth plaster to intricate patterns, we can replicate the unique textures of your building’s original design.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Color Matching:</strong> Using advanced color-matching techniques, we ensure the new stucco blends seamlessly with existing materials.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Detail Preservation:</strong> Our team pays special attention to architectural details like cornices, moldings, and trim, ensuring every element is preserved and enhanced.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Sustainability in Restoration</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring historic buildings is inherently sustainable, and using stucco in the process only adds to the environmental benefits. Stucco is made from natural materials and offers long-lasting performance, reducing the need for frequent repairs or replacements. Plus, the improved energy efficiency provided by EIFS systems minimizes the building’s carbon footprint, aligning with modern sustainability goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Choose Baseline Stucco for Your Historic Project?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring a historic property requires expertise, precision, and a deep respect for architectural heritage. At Baseline Stucco, we bring over 25 years of experience to every project, offering:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Certified expertise in advanced stucco systems, including STO, Dryvit, Parex, and Decoplast.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A proven track record of working with both residential and commercial properties.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A commitment to blending traditional aesthetics with modern durability.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Free estimates and personalized project planning to ensure every detail aligns with your vision.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Preserve the Past While Building for the Future</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Historic buildings are a vital part of New York’s character, and preserving them is essential for maintaining the state’s cultural and architectural legacy. With Baseline Stucco, you can restore your property with confidence, knowing you’re working with a team that values craftsmanship, tradition, and quality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re ready to start your historic restoration project, contact Baseline Stucco today. Let us help you preserve the charm and character of your building while ensuring it’s ready for the demands of the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Stucco Solutions for Historic New York Buildings: Preserving Charm with Modern Techniques','','publish','open','open','','stucco-solutions-for-historic-new-york-buildings-preserving-charm-with-modern-techniques','','','2024-11-27 14:36:07','2024-11-27 14:36:07','',0,'https://dev.baselinestucco.com/?p=455',0,'post','',0),
(456,1,'2024-11-27 14:35:51','2024-11-27 14:35:51','','verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632','','inherit','open','closed','','verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632','','','2024-11-27 14:35:51','2024-11-27 14:35:51','',455,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632.webp',0,'attachment','image/webp',0),
(457,1,'2024-11-27 14:36:06','2024-11-27 14:36:06','<!-- wp:paragraph -->\n<p>New York is a state rich in history, with architectural treasures ranging from historic brownstones and classic row houses to iconic commercial buildings. These structures are a testament to the craftsmanship of the past, but maintaining their charm while ensuring they meet modern standards can be a challenge. That’s where stucco comes in as a perfect solution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in helping property owners and preservationists restore and protect historic buildings. By blending traditional aesthetics with modern techniques, we offer stucco solutions that preserve the past while ensuring durability for the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":456,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_historic_building_in_ne_a384a5dd-5552-4d43-a3e8-e17c69f91632.webp\" alt=\"\" class=\"wp-image-456\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Why Stucco is Ideal for Historic Restorations</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco has long been a preferred material in architecture, known for its timeless appeal and adaptability. For historic buildings, stucco offers several advantages:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Authentic Look:</strong> Stucco’s versatile finishes can replicate traditional textures and colors, ensuring any restoration stays true to the building’s original design.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Durability:</strong> Modern stucco techniques add durability to historic structures, protecting them from New York’s harsh weather conditions while maintaining their classic appearance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Breathability:</strong> Stucco allows moisture to evaporate naturally, which is essential for older buildings that may have porous materials in their structure.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Addressing the Unique Challenges of Historic Buildings</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring historic properties requires a delicate balance between maintaining their character and upgrading them to meet modern safety and efficiency standards. Stucco allows us to achieve this balance:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Structural Integrity:</strong> Many older buildings face issues like crumbling facades or deteriorating exteriors. Stucco reinforces these structures without compromising their historic charm.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Energy Efficiency:</strong> Incorporating EIFS (Exterior Insulation Finish System) during restoration improves insulation without altering the building’s outward appearance. This reduces energy costs and enhances comfort while keeping the structure historically accurate.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Weather Resistance:</strong> New York’s historic buildings often endure rain, snow, and freeze-thaw cycles. Modern stucco techniques provide an added layer of protection against these elements.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Customization for Every Era and Style</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether you’re restoring a Victorian-era home, an Art Deco masterpiece, or a Federal-style building, stucco can be tailored to match the architectural details of any era. Baseline Stucco offers:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Textured Finishes:</strong> From smooth plaster to intricate patterns, we can replicate the unique textures of your building’s original design.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Color Matching:</strong> Using advanced color-matching techniques, we ensure the new stucco blends seamlessly with existing materials.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Detail Preservation:</strong> Our team pays special attention to architectural details like cornices, moldings, and trim, ensuring every element is preserved and enhanced.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Sustainability in Restoration</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring historic buildings is inherently sustainable, and using stucco in the process only adds to the environmental benefits. Stucco is made from natural materials and offers long-lasting performance, reducing the need for frequent repairs or replacements. Plus, the improved energy efficiency provided by EIFS systems minimizes the building’s carbon footprint, aligning with modern sustainability goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Choose Baseline Stucco for Your Historic Project?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Restoring a historic property requires expertise, precision, and a deep respect for architectural heritage. At Baseline Stucco, we bring over 25 years of experience to every project, offering:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Certified expertise in advanced stucco systems, including STO, Dryvit, Parex, and Decoplast.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A proven track record of working with both residential and commercial properties.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A commitment to blending traditional aesthetics with modern durability.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Free estimates and personalized project planning to ensure every detail aligns with your vision.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Preserve the Past While Building for the Future</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Historic buildings are a vital part of New York’s character, and preserving them is essential for maintaining the state’s cultural and architectural legacy. With Baseline Stucco, you can restore your property with confidence, knowing you’re working with a team that values craftsmanship, tradition, and quality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re ready to start your historic restoration project, contact Baseline Stucco today. Let us help you preserve the charm and character of your building while ensuring it’s ready for the demands of the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Stucco Solutions for Historic New York Buildings: Preserving Charm with Modern Techniques','','inherit','closed','closed','','455-revision-v1','','','2024-11-27 14:36:06','2024-11-27 14:36:06','',455,'https://dev.baselinestucco.com/?p=457',0,'revision','',0),
(458,1,'2024-11-27 14:39:06','2024-11-27 14:39:06','<!-- wp:paragraph -->\n<p>When it comes to selecting an exterior finish for your property, stucco stands out as one of the most versatile and durable options available. Whether you own a charming suburban home, a sleek urban residence, or a bustling commercial property in New York, stucco offers a wide range of finishes to suit your style and needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in helping property owners choose and apply the perfect stucco finish to enhance curb appeal, durability, and energy efficiency. Here’s a guide to help you explore your options and make the best decision for your project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":459,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102.webp\" alt=\"\" class=\"wp-image-459\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Why the Right Finish Matters</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The finish you choose for your stucco exterior not only defines the look of your property but also impacts its functionality. The right finish will:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Complement your building’s architectural style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Provide durability and protection against New York’s weather conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reflect your personal or brand aesthetic.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Increase your property’s value and curb appeal.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From traditional textures to modern designs, stucco offers unparalleled flexibility to create the look you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Popular Stucco Finishes for New York Properties</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Smooth Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A smooth finish creates a clean, polished look that is popular in modern and minimalist architecture. This option is ideal for urban residences and commercial properties seeking a sleek, sophisticated appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Contemporary homes, offices, and retail spaces.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Easy to maintain, resistant to dirt and grime, and works well with bold or neutral color palettes.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Sand or Float Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A sand or float finish provides a subtle, granular texture that adds depth and character to your exterior. This versatile finish can work with various architectural styles, making it a popular choice for both residential and commercial buildings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Suburban homes and mixed-use properties.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Durable, easy to repair, and complements a variety of designs.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Trowel Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A trowel finish, also known as skip trowel, adds artistic flair with its layered, textured appearance. This finish offers a unique, hand-applied look that can range from rustic to elegant, depending on the technique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Historic properties, high-end residences, and boutique businesses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Customizable, visually striking, and adds character to your building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Dash Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A dash finish features a rough, uneven texture that is applied by spraying stucco onto the surface. It creates a rugged look and adds durability to the exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Industrial or utilitarian buildings and properties needing extra weather resistance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Highly durable, hides imperfections, and withstands harsh weather.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Custom Finishes</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For property owners looking to stand out, custom finishes offer endless possibilities. From intricate patterns to bold color combinations, custom stucco finishes allow you to create a truly unique exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Properties that require branding or personalized touches.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Completely tailored to your vision and property style.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Matching Stucco Finishes to New York’s Architectural Styles</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>New York’s diverse architecture ranges from historic brownstones to contemporary skyscrapers. Stucco finishes can enhance these styles by blending seamlessly with the design or adding modern touches.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>For <strong>historic homes</strong> or <strong>landmarks</strong>, consider a textured or trowel finish to maintain authenticity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>For <strong>modern properties</strong>, opt for smooth or sand finishes to complement sleek designs.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>For <strong>commercial buildings</strong>, custom finishes can help align the exterior with your brand identity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Color Options to Elevate Your Stucco Finish</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco finishes are highly customizable, not only in texture but also in color. Whether you want to match existing tones or introduce a bold new palette, stucco allows for endless possibilities. At Baseline Stucco, we use advanced color-matching techniques to ensure your finish aligns perfectly with your vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Choose Baseline Stucco for Your Project?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we bring over 25 years of experience to every project, ensuring that your stucco finish is applied with precision and care. Our team is certified in leading systems like STO, Dryvit, Parex, and Decoplast, giving you access to the best materials and techniques in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We work closely with you to understand your needs and style preferences, offering personalized guidance to help you choose the perfect finish for your home or business. From the initial consultation to the final coat, we prioritize quality, durability, and customer satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Let’s Bring Your Vision to Life</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing the right stucco finish is an important step in creating a property that reflects your style and stands the test of time. Whether you’re building new, renovating, or updating your exterior, Baseline Stucco is here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today for a free consultation and explore the endless possibilities for your stucco exterior. Let’s create a finish that enhances your property’s beauty, functionality, and value.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Choosing the Right Stucco Finish for Your New York Home or Business','','publish','open','open','','choosing-the-right-stucco-finish-for-your-new-york-home-or-business','','','2024-11-27 14:39:15','2024-11-27 14:39:15','',0,'https://dev.baselinestucco.com/?p=458',0,'post','',0),
(459,1,'2024-11-27 14:38:51','2024-11-27 14:38:51','','verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102','','inherit','open','closed','','verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102','','','2024-11-27 14:38:51','2024-11-27 14:38:51','',458,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102.webp',0,'attachment','image/webp',0),
(460,1,'2024-11-27 14:39:06','2024-11-27 14:39:06','<!-- wp:paragraph -->\n<p>When it comes to selecting an exterior finish for your property, stucco stands out as one of the most versatile and durable options available. Whether you own a charming suburban home, a sleek urban residence, or a bustling commercial property in New York, stucco offers a wide range of finishes to suit your style and needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we specialize in helping property owners choose and apply the perfect stucco finish to enhance curb appeal, durability, and energy efficiency. Here’s a guide to help you explore your options and make the best decision for your project.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":459,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_and_image_of_a_small_business_storefr_7a5c1262-da1b-4abf-b441-7ad7fdbfd102.webp\" alt=\"\" class=\"wp-image-459\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Why the Right Finish Matters</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The finish you choose for your stucco exterior not only defines the look of your property but also impacts its functionality. The right finish will:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>Complement your building’s architectural style.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Provide durability and protection against New York’s weather conditions.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Reflect your personal or brand aesthetic.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Increase your property’s value and curb appeal.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>From traditional textures to modern designs, stucco offers unparalleled flexibility to create the look you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Popular Stucco Finishes for New York Properties</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Smooth Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A smooth finish creates a clean, polished look that is popular in modern and minimalist architecture. This option is ideal for urban residences and commercial properties seeking a sleek, sophisticated appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Contemporary homes, offices, and retail spaces.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Easy to maintain, resistant to dirt and grime, and works well with bold or neutral color palettes.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Sand or Float Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A sand or float finish provides a subtle, granular texture that adds depth and character to your exterior. This versatile finish can work with various architectural styles, making it a popular choice for both residential and commercial buildings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Suburban homes and mixed-use properties.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Durable, easy to repair, and complements a variety of designs.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Trowel Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A trowel finish, also known as skip trowel, adds artistic flair with its layered, textured appearance. This finish offers a unique, hand-applied look that can range from rustic to elegant, depending on the technique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Historic properties, high-end residences, and boutique businesses.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Customizable, visually striking, and adds character to your building.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Dash Finish</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A dash finish features a rough, uneven texture that is applied by spraying stucco onto the surface. It creates a rugged look and adds durability to the exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Industrial or utilitarian buildings and properties needing extra weather resistance.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Highly durable, hides imperfections, and withstands harsh weather.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4 class=\"wp-block-heading\"><strong>Custom Finishes</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For property owners looking to stand out, custom finishes offer endless possibilities. From intricate patterns to bold color combinations, custom stucco finishes allow you to create a truly unique exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Best For:</strong> Properties that require branding or personalized touches.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Benefits:</strong> Completely tailored to your vision and property style.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Matching Stucco Finishes to New York’s Architectural Styles</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>New York’s diverse architecture ranges from historic brownstones to contemporary skyscrapers. Stucco finishes can enhance these styles by blending seamlessly with the design or adding modern touches.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li>For <strong>historic homes</strong> or <strong>landmarks</strong>, consider a textured or trowel finish to maintain authenticity.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>For <strong>modern properties</strong>, opt for smooth or sand finishes to complement sleek designs.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>For <strong>commercial buildings</strong>, custom finishes can help align the exterior with your brand identity.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Color Options to Elevate Your Stucco Finish</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco finishes are highly customizable, not only in texture but also in color. Whether you want to match existing tones or introduce a bold new palette, stucco allows for endless possibilities. At Baseline Stucco, we use advanced color-matching techniques to ensure your finish aligns perfectly with your vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Why Choose Baseline Stucco for Your Project?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we bring over 25 years of experience to every project, ensuring that your stucco finish is applied with precision and care. Our team is certified in leading systems like STO, Dryvit, Parex, and Decoplast, giving you access to the best materials and techniques in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We work closely with you to understand your needs and style preferences, offering personalized guidance to help you choose the perfect finish for your home or business. From the initial consultation to the final coat, we prioritize quality, durability, and customer satisfaction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Let’s Bring Your Vision to Life</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing the right stucco finish is an important step in creating a property that reflects your style and stands the test of time. Whether you’re building new, renovating, or updating your exterior, Baseline Stucco is here to help.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today for a free consultation and explore the endless possibilities for your stucco exterior. Let’s create a finish that enhances your property’s beauty, functionality, and value.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Choosing the Right Stucco Finish for Your New York Home or Business','','inherit','closed','closed','','458-revision-v1','','','2024-11-27 14:39:06','2024-11-27 14:39:06','',458,'https://dev.baselinestucco.com/?p=460',0,'revision','',0),
(461,1,'2024-11-27 14:40:50','2024-11-27 14:40:50','<!-- wp:paragraph -->\n<p>New York’s climate is as dynamic as its skyline, with freezing winters and humid summers testing the durability of building exteriors. One of the greatest challenges for stucco surfaces in this region is the freeze-thaw cycle, which occurs when water seeps into small cracks, freezes, and expands, causing potential damage to the exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stucco is an excellent choice for New York homes and businesses, offering durability, energy efficiency, and visual appeal. However, understanding how to protect your stucco from freeze-thaw cycles is key to ensuring it lasts for years to come. Here are essential tips to safeguard your stucco in New York’s challenging climate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29.webp\" alt=\"\" class=\"wp-image-462\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Understand the Freeze-Thaw Cycle and Its Impact</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The freeze-thaw cycle occurs when water penetrates the stucco surface through small cracks or pores. As temperatures drop, this water freezes and expands, causing cracks to widen or new ones to form. Over time, repeated cycles can weaken the stucco, leading to peeling, flaking, or structural issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stucco is naturally resistant to many weather conditions, but proactive maintenance is necessary to minimize the impact of freeze-thaw cycles and prevent costly repairs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Seal Your Stucco to Prevent Moisture Penetration</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the best ways to protect stucco from freeze-thaw damage is by sealing the surface with a high-quality, water-resistant sealant. A properly sealed stucco exterior will repel water, reducing the chances of moisture seeping into cracks or pores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>When to Seal:</strong> Seal stucco every 5–7 years or as recommended by your contractor.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>How It Helps:</strong> A good sealant acts as a barrier, keeping water out while allowing the stucco to breathe and release trapped moisture.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Address Cracks and Damage Promptly</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Even small cracks in stucco can allow water to enter, making it essential to inspect and repair your exterior regularly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Inspection Tips:</strong> Look for cracks, discoloration, or bulges, especially after winter or heavy rainfall.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Repair Options:</strong> Small cracks can often be filled with stucco patching material, while larger issues may require professional repair.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>By addressing damage early, you can prevent minor issues from escalating during freeze-thaw cycles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Ensure Proper Drainage Around Your Property</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Poor drainage can cause water to pool near the foundation, increasing the risk of moisture seeping into your stucco walls.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Gutter Maintenance:</strong> Keep gutters and downspouts clean and ensure they direct water away from the building.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grading:</strong> Ensure the ground around your property slopes away from the foundation to prevent water buildup.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Proper drainage reduces the overall moisture exposure to your stucco, protecting it from repeated freeze-thaw cycles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Consider Upgrading to EIFS for Added Protection</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you’re concerned about freeze-thaw damage, consider upgrading to an EIFS (Exterior Insulation Finish System) exterior. EIFS includes an insulating layer that not only enhances energy efficiency but also provides extra flexibility and durability, reducing the impact of temperature fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Benefits of EIFS:</strong> Superior insulation, reduced cracking, and a weather-resistant barrier.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Why It Works:</strong> The multi-layered system minimizes moisture penetration and adds resilience to the exterior surface.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Schedule Regular Professional Maintenance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Working with a trusted stucco professional ensures your exterior is always in top condition. At Baseline Stucco, we offer comprehensive inspection, maintenance, and repair services tailored to New York’s unique climate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>What We Do:</strong> Identify potential problem areas, repair damage, and apply protective treatments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Why Choose Us:</strong> With over 25 years of experience, we understand the specific needs of stucco in freeze-thaw environments.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Protect Your Investment with Baseline Stucco</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco is an excellent choice for New York properties, but proper care is essential to ensure it performs well under freeze-thaw conditions. By sealing, repairing, and maintaining your stucco, you can preserve its beauty and durability for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we’re here to help. Whether you need a quick repair, a full inspection, or an upgrade to EIFS, our team has the expertise to keep your stucco in peak condition. Contact us today to schedule a consultation and take the first step in protecting your property from New York’s freeze-thaw cycle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Protecting Your Stucco in New York’s Freeze-Thaw Cycle: Tips for Longevity','','publish','open','open','','protecting-your-stucco-in-new-yorks-freeze-thaw-cycle-tips-for-longevity','','','2024-11-27 14:42:20','2024-11-27 14:42:20','',0,'https://dev.baselinestucco.com/?p=461',0,'post','',0),
(462,1,'2024-11-27 14:40:34','2024-11-27 14:40:34','','verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29','','inherit','open','closed','','verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29','','','2024-11-27 14:40:34','2024-11-27 14:40:34','',461,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29.webp',0,'attachment','image/webp',0),
(463,1,'2024-11-27 14:40:50','2024-11-27 14:40:50','<!-- wp:paragraph -->\n<p>New York’s climate is as dynamic as its skyline, with freezing winters and humid summers testing the durability of building exteriors. One of the greatest challenges for stucco surfaces in this region is the freeze-thaw cycle, which occurs when water seeps into small cracks, freezes, and expands, causing potential damage to the exterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stucco is an excellent choice for New York homes and businesses, offering durability, energy efficiency, and visual appeal. However, understanding how to protect your stucco from freeze-thaw cycles is key to ensuring it lasts for years to come. Here are essential tips to safeguard your stucco in New York’s challenging climate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":462,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_a_new_york_stucco_house_i_5b85c851-11dc-462e-8dea-ad98c1e13b29.webp\" alt=\"\" class=\"wp-image-462\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Understand the Freeze-Thaw Cycle and Its Impact</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The freeze-thaw cycle occurs when water penetrates the stucco surface through small cracks or pores. As temperatures drop, this water freezes and expands, causing cracks to widen or new ones to form. Over time, repeated cycles can weaken the stucco, leading to peeling, flaking, or structural issues.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stucco is naturally resistant to many weather conditions, but proactive maintenance is necessary to minimize the impact of freeze-thaw cycles and prevent costly repairs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Seal Your Stucco to Prevent Moisture Penetration</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the best ways to protect stucco from freeze-thaw damage is by sealing the surface with a high-quality, water-resistant sealant. A properly sealed stucco exterior will repel water, reducing the chances of moisture seeping into cracks or pores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>When to Seal:</strong> Seal stucco every 5–7 years or as recommended by your contractor.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>How It Helps:</strong> A good sealant acts as a barrier, keeping water out while allowing the stucco to breathe and release trapped moisture.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Address Cracks and Damage Promptly</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Even small cracks in stucco can allow water to enter, making it essential to inspect and repair your exterior regularly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Inspection Tips:</strong> Look for cracks, discoloration, or bulges, especially after winter or heavy rainfall.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Repair Options:</strong> Small cracks can often be filled with stucco patching material, while larger issues may require professional repair.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>By addressing damage early, you can prevent minor issues from escalating during freeze-thaw cycles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Ensure Proper Drainage Around Your Property</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Poor drainage can cause water to pool near the foundation, increasing the risk of moisture seeping into your stucco walls.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Gutter Maintenance:</strong> Keep gutters and downspouts clean and ensure they direct water away from the building.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Grading:</strong> Ensure the ground around your property slopes away from the foundation to prevent water buildup.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Proper drainage reduces the overall moisture exposure to your stucco, protecting it from repeated freeze-thaw cycles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Consider Upgrading to EIFS for Added Protection</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you’re concerned about freeze-thaw damage, consider upgrading to an EIFS (Exterior Insulation Finish System) exterior. EIFS includes an insulating layer that not only enhances energy efficiency but also provides extra flexibility and durability, reducing the impact of temperature fluctuations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>Benefits of EIFS:</strong> Superior insulation, reduced cracking, and a weather-resistant barrier.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Why It Works:</strong> The multi-layered system minimizes moisture penetration and adds resilience to the exterior surface.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Schedule Regular Professional Maintenance</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Working with a trusted stucco professional ensures your exterior is always in top condition. At Baseline Stucco, we offer comprehensive inspection, maintenance, and repair services tailored to New York’s unique climate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li><strong>What We Do:</strong> Identify potential problem areas, repair damage, and apply protective treatments.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Why Choose Us:</strong> With over 25 years of experience, we understand the specific needs of stucco in freeze-thaw environments.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Protect Your Investment with Baseline Stucco</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stucco is an excellent choice for New York properties, but proper care is essential to ensure it performs well under freeze-thaw conditions. By sealing, repairing, and maintaining your stucco, you can preserve its beauty and durability for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we’re here to help. Whether you need a quick repair, a full inspection, or an upgrade to EIFS, our team has the expertise to keep your stucco in peak condition. Contact us today to schedule a consultation and take the first step in protecting your property from New York’s freeze-thaw cycle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Protecting Your Stucco in New York’s Freeze-Thaw Cycle: Tips for Longevity','','inherit','closed','closed','','461-revision-v1','','','2024-11-27 14:40:50','2024-11-27 14:40:50','',461,'https://dev.baselinestucco.com/?p=463',0,'revision','',0),
(464,1,'2024-11-27 14:45:36','2024-11-27 14:45:36','<!-- wp:paragraph -->\n<p>Winter in New York can be beautiful, but it also brings challenges for property owners. Freezing temperatures, snow, and ice can take a toll on building exteriors, especially stucco. While stucco is known for its durability, proper seasonal maintenance is essential to ensure it stands up to winter’s harsh conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we’ve helped countless New York property owners protect their exteriors from the elements. In this guide, we’ll share expert tips to help you prepare your stucco for winter and keep it in top shape through the cold months.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":465,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a.webp\" alt=\"\" class=\"wp-image-465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Inspect Your Stucco for Damage</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before winter arrives, take the time to inspect your stucco exterior for any signs of wear or damage. Look for cracks, chips, or areas where the surface appears discolored or bulging. Even small imperfections can allow moisture to seep in, leading to freeze-thaw damage when the temperatures drop.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you spot any issues, address them promptly. Minor cracks can often be repaired with stucco patching materials, but more extensive damage should be handled by professionals to ensure a seamless and effective fix.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Clean the Surface</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dirt, mold, and mildew can accumulate on stucco over time, especially in New York’s humid summer and fall months. Cleaning your stucco before winter not only improves its appearance but also helps prevent moisture buildup.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use a soft brush or a low-pressure washer to remove dirt and debris. For tougher stains or mold, a mild stucco-safe cleaner can do the job. Avoid high-pressure washing, as it can damage the surface or force water into small cracks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Apply a Water-Resistant Sealant</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the most effective ways to protect your stucco from winter damage is by applying a high-quality sealant. Sealants act as a barrier, preventing moisture from penetrating the surface while still allowing the stucco to breathe and release trapped moisture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ensure the sealant is applied evenly across the entire surface, paying special attention to areas around windows, doors, and other potential entry points for water. A good sealant can significantly reduce the risk of freeze-thaw damage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Check and Maintain Your Drainage System</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper drainage is critical for protecting stucco during the winter months. Snowmelt and ice can create excess moisture, which needs to be directed away from your property to prevent pooling near the foundation or stucco walls.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inspect your gutters and downspouts to ensure they are clear of debris and functioning properly. Make sure water is directed away from the building and consider installing extensions if necessary to prevent runoff from accumulating near the base of your stucco.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Protect Against Ice Dams</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ice dams can form on roofs when snow melts and refreezes at the eaves, creating a barrier that traps water. This water can seep into the walls, potentially damaging the stucco.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To prevent ice dams, ensure your roof is properly insulated and ventilated to maintain an even temperature. Removing snow from the edges of your roof promptly after storms can also help reduce the risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Plan for Snow Removal Carefully</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your stucco extends down to the ground, take care when shoveling snow or using snow-removal equipment near the walls. Avoid hitting the stucco with heavy tools, as this can cause chips or cracks. For properties with EIFS, which is more flexible than traditional stucco, these precautions are still essential to avoid unnecessary damage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Schedule a Professional Inspection</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For peace of mind, consider scheduling a professional inspection with Baseline Stucco. Our experts can identify and address potential issues that might not be visible to the untrained eye. From repairing cracks to applying protective treatments, we’ll ensure your stucco is winter-ready and built to last.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Winter Maintenance Matters</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Winter can be tough on any building exterior, but with proper preparation, your stucco can weather the season beautifully. Regular maintenance not only prevents costly repairs but also extends the life of your stucco, preserving its strength and aesthetic appeal for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Protect Your Stucco with Baseline Stucco</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we understand New York’s unique climate challenges and have the expertise to help you safeguard your property. Whether you need minor repairs, a professional inspection, or a complete winterization plan, our team is here to assist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to schedule a consultation and let us help you prepare your stucco for winter. With Baseline Stucco, you can enjoy peace of mind knowing your property is ready to face the elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Preparing Your Stucco for Winter: Seasonal Maintenance Tips for New York Property Owners','','publish','open','open','','preparing-your-stucco-for-winter-seasonal-maintenance-tips-for-new-york-property-owners','','','2024-11-27 14:45:36','2024-11-27 14:45:36','',0,'https://dev.baselinestucco.com/?p=464',0,'post','',0),
(465,1,'2024-11-27 14:45:18','2024-11-27 14:45:18','','verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a','','inherit','open','closed','','verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a','','','2024-11-27 14:45:18','2024-11-27 14:45:18','',464,'http://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a.webp',0,'attachment','image/webp',0),
(466,1,'2024-11-27 14:45:36','2024-11-27 14:45:36','<!-- wp:paragraph -->\n<p>Winter in New York can be beautiful, but it also brings challenges for property owners. Freezing temperatures, snow, and ice can take a toll on building exteriors, especially stucco. While stucco is known for its durability, proper seasonal maintenance is essential to ensure it stands up to winter’s harsh conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we’ve helped countless New York property owners protect their exteriors from the elements. In this guide, we’ll share expert tips to help you prepare your stucco for winter and keep it in top shape through the cold months.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":465,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://dev.baselinestucco.com/wp-content/uploads/2024/11/verobeachmarketing_create_an_image_of_someone_preparing_their_s_8fa7492f-fe9c-463b-8e7e-95731f11ae3a.webp\" alt=\"\" class=\"wp-image-465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>1. Inspect Your Stucco for Damage</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before winter arrives, take the time to inspect your stucco exterior for any signs of wear or damage. Look for cracks, chips, or areas where the surface appears discolored or bulging. Even small imperfections can allow moisture to seep in, leading to freeze-thaw damage when the temperatures drop.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you spot any issues, address them promptly. Minor cracks can often be repaired with stucco patching materials, but more extensive damage should be handled by professionals to ensure a seamless and effective fix.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>2. Clean the Surface</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dirt, mold, and mildew can accumulate on stucco over time, especially in New York’s humid summer and fall months. Cleaning your stucco before winter not only improves its appearance but also helps prevent moisture buildup.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use a soft brush or a low-pressure washer to remove dirt and debris. For tougher stains or mold, a mild stucco-safe cleaner can do the job. Avoid high-pressure washing, as it can damage the surface or force water into small cracks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>3. Apply a Water-Resistant Sealant</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the most effective ways to protect your stucco from winter damage is by applying a high-quality sealant. Sealants act as a barrier, preventing moisture from penetrating the surface while still allowing the stucco to breathe and release trapped moisture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ensure the sealant is applied evenly across the entire surface, paying special attention to areas around windows, doors, and other potential entry points for water. A good sealant can significantly reduce the risk of freeze-thaw damage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>4. Check and Maintain Your Drainage System</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Proper drainage is critical for protecting stucco during the winter months. Snowmelt and ice can create excess moisture, which needs to be directed away from your property to prevent pooling near the foundation or stucco walls.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inspect your gutters and downspouts to ensure they are clear of debris and functioning properly. Make sure water is directed away from the building and consider installing extensions if necessary to prevent runoff from accumulating near the base of your stucco.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>5. Protect Against Ice Dams</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ice dams can form on roofs when snow melts and refreezes at the eaves, creating a barrier that traps water. This water can seep into the walls, potentially damaging the stucco.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To prevent ice dams, ensure your roof is properly insulated and ventilated to maintain an even temperature. Removing snow from the edges of your roof promptly after storms can also help reduce the risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>6. Plan for Snow Removal Carefully</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your stucco extends down to the ground, take care when shoveling snow or using snow-removal equipment near the walls. Avoid hitting the stucco with heavy tools, as this can cause chips or cracks. For properties with EIFS, which is more flexible than traditional stucco, these precautions are still essential to avoid unnecessary damage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>7. Schedule a Professional Inspection</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For peace of mind, consider scheduling a professional inspection with Baseline Stucco. Our experts can identify and address potential issues that might not be visible to the untrained eye. From repairing cracks to applying protective treatments, we’ll ensure your stucco is winter-ready and built to last.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Why Winter Maintenance Matters</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Winter can be tough on any building exterior, but with proper preparation, your stucco can weather the season beautifully. Regular maintenance not only prevents costly repairs but also extends the life of your stucco, preserving its strength and aesthetic appeal for years to come.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Protect Your Stucco with Baseline Stucco</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At Baseline Stucco, we understand New York’s unique climate challenges and have the expertise to help you safeguard your property. Whether you need minor repairs, a professional inspection, or a complete winterization plan, our team is here to assist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us today to schedule a consultation and let us help you prepare your stucco for winter. With Baseline Stucco, you can enjoy peace of mind knowing your property is ready to face the elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>\"Strength in Every Finish, Pride in Every Detail.\"</strong></p>\n<!-- /wp:paragraph -->','Preparing Your Stucco for Winter: Seasonal Maintenance Tips for New York Property Owners','','inherit','closed','closed','','464-revision-v1','','','2024-11-27 14:45:36','2024-11-27 14:45:36','',464,'https://dev.baselinestucco.com/?p=466',0,'revision','',0),
(467,1,'2024-11-27 14:48:23','2024-11-27 14:48:23','[cs_content _p=\'2\'][cs_element_bar _id=\"1\" ][cs_element_container _id=\"2\" ][cs_element_image _id=\"3\" ][/cs_element_container][/cs_element_bar][cs_element_section _id=\"4\" ][cs_element_row _id=\"5\" ][cs_element_column _id=\"6\" ][cs_element_headline _id=\"7\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][cs_element_headline _id=\"8\" ][cs_content_seo]Certified Experts in Residential and Commercial EIFS Stucco Solutions for 25+ Years.\\n\\n[/cs_content_seo][cs_element_headline _id=\"9\" ][cs_content_seo]Servicing The Hudson Valley\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"10\" ][cs_element_row _id=\"11\" ][cs_element_column _id=\"12\" ][cs_element_button _id=\"13\" ][cs_content_seo]Request a Free Estimate\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"14\" ][cs_element_row _id=\"15\" ][cs_element_column _id=\"16\" ][cs_element_image _id=\"17\" ][cs_element_gap _id=\"18\" ][/cs_element_column][cs_element_column _id=\"19\" ][cs_element_headline _id=\"20\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"21\" ][cs_content_seo]Highlighting 25+ years of experience, certifications, and skilled craftsmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"22\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"23\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_headline _id=\"24\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"25\" ][cs_element_column _id=\"26\" ][cs_element_image _id=\"27\" ][cs_element_gap _id=\"28\" ][cs_element_headline _id=\"29\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"30\" ][cs_content_seo]Emphasizing warranties, fully insured services, and high-quality workmanship.\\n\\n[/cs_content_seo][cs_element_headline _id=\"31\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"32\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_headline _id=\"33\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][cs_element_gap _id=\"34\" ][/cs_element_column][cs_element_column _id=\"35\" ][cs_element_image _id=\"36\" ][/cs_element_column][/cs_element_row][cs_element_row _id=\"37\" ][cs_element_column _id=\"38\" ][cs_element_image _id=\"39\" ][cs_element_gap _id=\"40\" ][/cs_element_column][cs_element_column _id=\"41\" ][cs_element_headline _id=\"42\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"43\" ][cs_content_seo]Focusing on free project planning, tailored solutions, and attention to detail.\\n\\n[/cs_content_seo][cs_element_headline _id=\"44\" ][cs_content_seo]Highlights\\n\\n[/cs_content_seo][cs_element_headline _id=\"45\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_headline _id=\"46\" ][cs_content_seo]Specializing in New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"47\" ][cs_element_row _id=\"48\" ][cs_element_column _id=\"49\" ][cs_element_button _id=\"50\" ][cs_content_seo]Get Your Free Estimate Today\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"51\" ][cs_element_row _id=\"52\" ][cs_element_column _id=\"53\" ][cs_element_headline _id=\"54\" ][cs_content_seo]Our Work Speaks for Itself\\n\\n[/cs_content_seo][cs_element_line _id=\"55\" ][cs_element_text _id=\"56\" ][cs_content_seo]At Baseline Stucco, we take pride in delivering top-tier craftsmanship for both residential and commercial projects. From energy-efficient EIFS installations to stunning stucco finishes, our portfolio showcases the durability, beauty, and attention to detail that define our work. Explore our completed projects and see how we bring vision and quality together.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"57\" ][cs_element_column _id=\"58\" ][cs_element_image _id=\"59\" ][cs_element_gap _id=\"60\" ][cs_element_text _id=\"61\" ][cs_content_seo]Friendly Honda Dealership Commericial\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"62\" ][cs_element_image _id=\"63\" ][cs_element_text _id=\"64\" ][cs_content_seo]Health Quest Lloyd Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"65\" ][/cs_element_column][cs_element_column _id=\"66\" ][cs_element_image _id=\"67\" ][cs_element_text _id=\"68\" ][cs_content_seo]Five Guys &amp; Chipotle Commericial&nbsp;\\n\\n[/cs_content_seo][cs_element_gap _id=\"69\" ][/cs_element_column][cs_element_column _id=\"70\" ][cs_element_image _id=\"71\" ][cs_element_text _id=\"72\" ][cs_content_seo]Hyundai Goshan Commericial\\n\\n[/cs_content_seo][cs_element_gap _id=\"73\" ][/cs_element_column][cs_element_column _id=\"74\" ][cs_element_image _id=\"75\" ][cs_element_text _id=\"76\" ][cs_content_seo]Healy Dodge Dealership Commercial\\n\\n[/cs_content_seo][cs_element_gap _id=\"77\" ][/cs_element_column][cs_element_column _id=\"78\" ][cs_element_image _id=\"79\" ][cs_element_text _id=\"80\" ][cs_content_seo]LaGrange Farms Residential\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"81\" ][cs_element_row _id=\"82\" ][cs_element_column _id=\"83\" ][cs_element_headline _id=\"84\" ][cs_content_seo]Built on Expertise\\n\\n[/cs_content_seo][cs_element_text _id=\"85\" ][cs_content_seo]25+ Years in Business\\n\\n[/cs_content_seo][cs_element_text _id=\"86\" ][cs_content_seo]STO, Dryvit, Parex, Decoplast Certified\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"87\" ][cs_element_headline _id=\"88\" ][cs_content_seo]Committed to Quality\\n\\n[/cs_content_seo][cs_element_text _id=\"89\" ][cs_content_seo]Fully Insured for Peace of Mind\\n\\n[/cs_content_seo][cs_element_text _id=\"90\" ][cs_content_seo]Manufacturer &amp; Workmanship Warranties\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"91\" ][cs_element_headline _id=\"92\" ][cs_content_seo]Your Vision, Our Promise\\n\\n[/cs_content_seo][cs_element_text _id=\"93\" ][cs_content_seo]Complimentary Project Planning- FREE Estimates\\n\\n[/cs_content_seo][cs_element_text _id=\"94\" ][cs_content_seo]New Construction &amp; Renovations\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"95\" ][cs_element_row _id=\"96\" ][cs_element_column _id=\"97\" ][cs_element_headline _id=\"98\" ][cs_content_seo]I\'m back! Aren\'t you amazed by my typing skills?\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][cs_element_section _id=\"99\" ][cs_element_row _id=\"100\" ][cs_element_column _id=\"101\" ][cs_element_headline _id=\"102\" ][cs_content_seo]Tailored Stucco Solutions for Every Project\\n\\nWhether you\'re enhancing your home or elevating your business, our expert team delivers stunning, durable finishes designed to meet your unique needs.\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][cs_element_row _id=\"103\" ][cs_element_column _id=\"104\" ][cs_element_headline _id=\"105\" ][cs_content_seo]Commerical\\n\\n[/cs_content_seo][cs_element_headline _id=\"106\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"107\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"108\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"109\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"110\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"111\" ][cs_content_seo]Explore Commercial Projects\\n\\n[/cs_content_seo][/cs_element_column][cs_element_column _id=\"112\" ][cs_element_headline _id=\"113\" ][cs_content_seo]Residential\\n\\n[/cs_content_seo][cs_element_headline _id=\"114\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"115\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"116\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"117\" ][cs_content_seo]Some features might be short\\n\\n[/cs_content_seo][cs_element_headline _id=\"118\" ][cs_content_seo]Whereas you may discover that other features take longer to fully describe\\n\\n[/cs_content_seo][cs_element_button _id=\"119\" ][cs_content_seo]View Residential Projects\\n\\n[/cs_content_seo][/cs_element_column][/cs_element_row][/cs_element_section][/cs_content]','Home','','inherit','closed','closed','','2-revision-v1','','','2024-11-27 14:48:23','2024-11-27 14:48:23','',2,'https://dev.baselinestucco.com/?p=467',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES
(1,1,0),
(7,2,0),
(125,3,0),
(126,3,0),
(127,3,0),
(128,3,0),
(131,4,0),
(132,4,0),
(139,3,0),
(142,5,0),
(324,3,0),
(326,5,0),
(353,1,0),
(356,1,0),
(359,1,0),
(365,5,0),
(383,3,0),
(384,4,0),
(385,3,0),
(452,1,0),
(455,1,0),
(458,1,0),
(461,1,0),
(464,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext 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=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'twentytwentyfive','twentytwentyfive',0),
(3,'Primary Menu','primary-menu',0),
(4,'Right Header Menu','right-header-menu',0),
(5,'Left Header Menu','left-header-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES
(1,1,'nickname','admin'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','fresh'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wp_user_level','10'),
(14,1,'dismissed_wp_pointers',''),
(15,1,'show_welcome_panel','1'),
(16,1,'session_tokens','a:1:{s:64:\"6e3535cef0d8ed6f562837883d073094cd229e86e6cef169dc6f083ee439f59a\";a:4:{s:10:\"expiration\";i:1732889448;s:2:\"ip\";s:11:\"73.0.249.56\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1732716648;}}'),
(17,1,'wp_dashboard_quick_press_last_post_id','451'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"73.0.249.0\";}'),
(19,1,'wp_user-settings','mfold=f&imgsize=full&libraryContent=browse'),
(20,1,'wp_user-settings-time','1732548762'),
(21,2,'nickname','stacy'),
(22,2,'first_name',''),
(23,2,'last_name',''),
(24,2,'description',''),
(25,2,'rich_editing','true'),
(26,2,'syntax_highlighting','true'),
(27,2,'comment_shortcuts','false'),
(28,2,'admin_color','fresh'),
(29,2,'use_ssl','0'),
(30,2,'show_admin_bar_front','true'),
(31,2,'locale',''),
(32,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(33,2,'wp_user_level','10'),
(34,2,'dismissed_wp_pointers',''),
(35,1,'wp_persisted_preferences','a:3:{s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-11-27T14:40:59.442Z\";}'),
(36,3,'nickname','Tiffany'),
(37,3,'first_name',''),
(38,3,'last_name',''),
(39,3,'description',''),
(40,3,'rich_editing','true'),
(41,3,'syntax_highlighting','true'),
(42,3,'comment_shortcuts','false'),
(43,3,'admin_color','fresh'),
(44,3,'use_ssl','0'),
(45,3,'show_admin_bar_front','true'),
(46,3,'locale',''),
(47,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(48,3,'wp_user_level','10'),
(49,3,'dismissed_wp_pointers',''),
(50,2,'session_tokens','a:1:{s:64:\"b0ef37fde1afa96cd70bc7a6711ad000a24155b03606ee4d6fd4518046720612\";a:4:{s:10:\"expiration\";i:1732752180;s:2:\"ip\";s:11:\"73.0.249.56\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36\";s:5:\"login\";i:1732579380;}}'),
(51,2,'wp_dashboard_quick_press_last_post_id','9'),
(52,2,'community-events-location','a:1:{s:2:\"ip\";s:10:\"73.0.249.0\";}'),
(53,2,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:41:\"dashboard_site_health,dashboard_right_now\";s:4:\"side\";s:21:\"dashboard_quick_press\";s:7:\"column3\";s:17:\"dashboard_primary\";s:7:\"column4\";s:18:\"dashboard_activity\";}'),
(54,2,'closedpostboxes_dashboard','a:5:{i:0;s:21:\"dashboard_site_health\";i:1;s:19:\"dashboard_right_now\";i:2;s:21:\"dashboard_quick_press\";i:3;s:17:\"dashboard_primary\";i:4;s:18:\"dashboard_activity\";}'),
(55,2,'metaboxhidden_dashboard','a:0:{}'),
(56,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\";}'),
(57,1,'metaboxhidden_nav-menus','a:5:{i:0;s:25:\"add-post-type-x-portfolio\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:17:\"add-portfolio-tag\";i:4;s:22:\"add-portfolio-category\";}'),
(58,1,'nav_menu_recently_edited','3'),
(59,2,'wp_user-settings','imgsize=full&libraryContent=browse'),
(60,2,'wp_user-settings-time','1732639142');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES
(1,'admin','$P$Bt9YbKCaL3iIRxe1BcrnqnAhk2NRBj0','admin','theparisianhostess@gmail.com','http://dev.baselinestucco.com','2024-11-18 21:17:10','',0,'admin'),
(2,'stacy','$P$BU5uPHLWt/b/6r.tGfCkrtjcI1G99i/','stacy','stacy@verovine.com','','2024-11-19 16:05:46','',0,'stacy'),
(3,'Tiffany','$P$BfVSf7dwYCSC8Cy4pt834BLkom992Z1','tiffany','tiffany@verovine.com','','2024-11-19 19:46:10','1732045570:$P$B8xoboZkiXX3Xyp2py5Q19MgCBI/0l/',0,'Tiffany');
/*!40000 ALTER TABLE `wp_users` 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 2024-11-27 12:51:25

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.
Bob Solari Archives | Lemmon Lines

Subscribe
  • KIWI ROTATING AD
  • VB OUTLETS AD
  • CHIAZENZA ad
  • Banner Ad 2 – Mr. Oil
  • Banner ad – GHO Homes
  • Banner Ad – Porch Factory

Subscribe
Lemmon Lines - Vero Beach Blog & Newsletter
Lemmon Lines - Vero Beach Blog & Newsletter